[Lldb-commits] [PATCH 2/2] Missing header.

Greg Clayton gclayton at apple.com
Wed Apr 6 15:12:53 PDT 2011


Looks good. Marco, do you have commit access? If so, commit when you get the chance. Else I will do so on your behalf.

Greg Clayton

On Apr 6, 2011, at 1:44 PM, Marco Minutoli wrote:

> strtoul is defined in stdlib.h and the header was missing in
> StringExtractor.cpp .
> ---
> source/Utility/StringExtractor.cpp |    2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/source/Utility/StringExtractor.cpp b/source/Utility/StringExtractor.cpp
> index 227b634..176eb89 100644
> --- a/source/Utility/StringExtractor.cpp
> +++ b/source/Utility/StringExtractor.cpp
> @@ -13,6 +13,8 @@
> // C++ Includes
> // Other libraries and framework includes
> // Project includes
> +#include <stdlib.h>
> +
> 
> static inline int
> xdigit_to_sint (char ch)
> -- 
> 1.7.1
> 
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits




More information about the lldb-commits mailing list