CMS 3D CMS Logo

csa_assert.h
Go to the documentation of this file.
1 #ifndef __FWCore_Utilities_interface_csa_assert_h__
2 #define __FWCore_Utilities_interface_csa_assert_h__
3 
4 #include <cassert>
5 
6 #ifdef __clang_analyzer__
7 #define csa_assert(CONDITION) assert(CONDITION)
8 #else
9 #define csa_assert(CONDITION) (void)0
10 #endif
11 
12 #endif // __FWCore_Utilities_interface_csa_assert_h__