analyzer: fix build with --enable-checking=release

When adding namespaces to the analyzer in
r10-6151-g75038aa6aa5b562e6358108619d66ef2ccab9a53
I messed up the nesting of the #endif for #if CHECKING_P
and the closing of namespace ana.

This patch fixes it.

gcc/analyzer/ChangeLog:
	* sm-signal.cc: Fix nesting of CHECKING_P and namespace ana.
This commit is contained in:
David Malcolm 2020-01-22 15:43:08 -05:00
parent 41fe06f89f
commit c9c8aef474
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2020-01-22 David Malcolm <dmalcolm@redhat.com>
* sm-signal.cc: Fix nesting of CHECKING_P and namespace ana.
2020-01-22 David Malcolm <dmalcolm@redhat.com>
PR analyzer/93378

View File

@ -369,7 +369,8 @@ analyzer_sm_signal_cc_tests ()
} // namespace selftest
#endif /* CHECKING_P */
} // namespace ana
#endif /* CHECKING_P */
#endif /* #if ENABLE_ANALYZER */