summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchappedm@gmail.com <chappedm@gmail.com@6b5cf1ce-ec42-a296-1ba9-69fdba395a50>2012-12-22 20:14:08 +0000
committerchappedm@gmail.com <chappedm@gmail.com@6b5cf1ce-ec42-a296-1ba9-69fdba395a50>2012-12-22 20:14:08 +0000
commitb96203b591f63d24cd2979241b18534d22358bca (patch)
tree41105f75138797574241336dc36a186f1bd5efd6
parent84b983c8d43f43a3c7f71d45d51fc4adcc688cd9 (diff)
downloadgperftools-b96203b591f63d24cd2979241b18534d22358bca.tar.gz
issue-461: Fix to malloc_extension.h so that it builds with -std=gnu++98
git-svn-id: http://gperftools.googlecode.com/svn/trunk@190 6b5cf1ce-ec42-a296-1ba9-69fdba395a50
-rw-r--r--src/gperftools/malloc_extension.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gperftools/malloc_extension.h b/src/gperftools/malloc_extension.h
index b180115..5fa7624 100644
--- a/src/gperftools/malloc_extension.h
+++ b/src/gperftools/malloc_extension.h
@@ -400,7 +400,7 @@ struct MallocRange {
INUSE, // Application is using this range
FREE, // Range is currently free
UNMAPPED, // Backing physical memory has been returned to the OS
- UNKNOWN,
+ UNKNOWN
// More enum values may be added in the future
};