diff options
author | lloyd <[email protected]> | 2014-02-16 18:16:29 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-02-16 18:16:29 +0000 |
commit | b5b19f315216ef6c1dc09d6846d995062cf039f0 (patch) | |
tree | 83a2ef8bf7561c84e0fda66909bfb56efa59a8b9 | |
parent | 4b09a2480c30e1b58473265f95550faa10b04af2 (diff) |
Missing include for std::to_string, noticed with Clang 3.4 w/ libc++
-rw-r--r-- | src/lib/alloc/locking_allocator/locking_allocator.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib/alloc/locking_allocator/locking_allocator.cpp b/src/lib/alloc/locking_allocator/locking_allocator.cpp index 13effbb09..84ccc73a8 100644 --- a/src/lib/alloc/locking_allocator/locking_allocator.cpp +++ b/src/lib/alloc/locking_allocator/locking_allocator.cpp @@ -8,6 +8,8 @@ #include <botan/locking_allocator.h> #include <botan/mem_ops.h> #include <algorithm> +#include <string> + #include <sys/mman.h> #include <sys/resource.h> |