commit | ed79de682ecba438d103d4849ffb8aecddfa306e | [log] [tgz] |
---|---|---|
author | Brian Silverman <brian@peloton-tech.com> | Sat Nov 28 18:10:17 2015 -0500 |
committer | Brian Silverman <brians> | Sat Nov 28 23:40:15 2015 +0000 |
tree | 296cc3cd2bb3a62822165f3c439cc1f5c9586ee2 | |
parent | 8074baa537003f10b9ed2d24154ce1ebc0bae990 [diff] |
Fix builds under other configurations Change-Id: Ice6008b644b8a9d4879c007b760ba90b031ec511
diff --git a/build_tests/tcmalloc.cc b/build_tests/tcmalloc.cc index 323ee58..eb74a65 100644 --- a/build_tests/tcmalloc.cc +++ b/build_tests/tcmalloc.cc
@@ -1,3 +1,3 @@ #include <stdlib.h> -int main() { malloc(500000); } +int main() { void *big_chunk __attribute__((unused)) = malloc(500000); }