Changeset 800bae1 for src/Common/Stats/Heap.cc
- Timestamp:
- Jun 17, 2019, 3:37:00 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 54b3fde, 6e55240
- Parents:
- 89faa82 (diff), aba20d2 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Common/Stats/Heap.cc
r89faa82 r800bae1 21 21 #include <iostream> 22 22 23 #if defined( NO_STATISTICS ) || defined( TCMALLOC ) 24 #define NO_HEAP_STATISTICS 23 #if defined(__has_feature) 24 #if __has_feature(address_sanitizer) 25 #define NO_HEAP_STATISTICS 26 # endif 27 #endif 28 29 #if defined( NO_STATISTICS ) || defined( TCMALLOC ) || defined(__SANITIZE_ADDRESS__) 30 #if !defined(NO_HEAP_STATISTICS) 31 #define NO_HEAP_STATISTICS 32 #endif 25 33 #endif 26 34
Note: See TracChangeset
for help on using the changeset viewer.