]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit - contrib/sqlite3/tea/generic/tclsqlite3.c
Merge r357224 from the clang1000-import branch:
authorDimitry Andric <dim@FreeBSD.org>
Tue, 28 Jan 2020 20:11:27 +0000 (20:11 +0000)
committerDimitry Andric <dim@FreeBSD.org>
Tue, 28 Jan 2020 20:11:27 +0000 (20:11 +0000)
commit8841e3fb92721487ff8ab542333d5577a9844b84
tree2897de808a9555d1b4365b87460873812da550c3
parentda858492df3e9e26c42880afb990ce87f432b436
parent62b61cee41217cc4b5d2861ada221f048ec81fd8
Merge r357224 from the clang1000-import branch:

Fix the following -Werror warning from clang 10.0.0 in binutils:

contrib/binutils/bfd/peicode.h:1356:3: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
                if (efi)
                ^
contrib/binutils/bfd/peicode.h:1353:8: note: previous statement is here
              if (pe_arch (bfd_target_efi_arch (*target_ptr)) != arch)
              ^
contrib/binutils/bfd/peicode.h:1370:3: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
                if (!efi)
                ^
contrib/binutils/bfd/peicode.h:1367:8: note: previous statement is here
              if (pe_arch (bfd_target_pei_arch (*target_ptr)) != arch)
              ^

MFC after: 3 days