diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-09-18 10:23:14 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-09-18 10:23:33 -0400 |
commit | bb175dac9641f5678875904bb289a1c03054f22c (patch) | |
tree | 762c9c285630876c61b592b966f878c405dbda9f /src/or/or.h | |
parent | 3f9fac7ee40f8cf7b335c2d5808406b5d8697a47 (diff) | |
download | tor-bb175dac9641f5678875904bb289a1c03054f22c.tar.gz tor-bb175dac9641f5678875904bb289a1c03054f22c.zip |
Activate INSTRUMENT_DOWNLOADS under clang analyzer as well as coverity
Patch from teor; ticket 13177.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 06d4e3c926..4d612ff65f 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -14,7 +14,7 @@ #include "orconfig.h" -#ifdef __COVERITY__ +#if defined(__clang_analyzer__) || defined(__COVERITY__) /* If we're building for a static analysis, turn on all the off-by-default * features. */ #ifndef INSTRUMENT_DOWNLOADS |