Fix use of deprecated gperftools headers.

As of gperftools 2.0 (Feb. 2012), they've been renamed in to
gperftools/ instead of google/, and as of gperftools 2.2, including
the later emits deprecation warnings.
This commit is contained in:
Jon Siwek 2015-02-11 13:56:34 -06:00
parent 23b9705a7b
commit 88af106b6b

View file

@ -48,8 +48,8 @@
#endif #endif
#ifdef USE_PERFTOOLS_DEBUG #ifdef USE_PERFTOOLS_DEBUG
#include <google/heap-checker.h> #include <gperftools/heap-checker.h>
#include <google/heap-profiler.h> #include <gperftools/heap-profiler.h>
extern HeapLeakChecker* heap_checker; extern HeapLeakChecker* heap_checker;
#endif #endif