commit | 7a198ac519ff2372a9b1868a3b890843cd7b669f | [log] [tgz] |
---|---|---|
author | Stephen Wilson <wilsons@start.ca> | Thu Apr 07 10:20:23 2011 +0000 |
committer | Stephen Wilson <wilsons@start.ca> | Thu Apr 07 10:20:23 2011 +0000 |
tree | 48a07bad3b4320e989c639547e4379d02b7a174c | |
parent | 63fe126ace0a7f998c39da3278c2bab7574e9842 [diff] [blame] |
Add a missing header strtoul() is defined in stdlib.h and the header was missing in StringExtractor.cpp. Patch by Marco Minutoli! git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@129070 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Utility/StringExtractor.cpp b/source/Utility/StringExtractor.cpp index 227b634..96ced32 100644 --- a/source/Utility/StringExtractor.cpp +++ b/source/Utility/StringExtractor.cpp
@@ -10,6 +10,8 @@ #include "Utility/StringExtractor.h" // C Includes +#include <stdlib.h> + // C++ Includes // Other libraries and framework includes // Project includes