[Lldb-commits] [PATCH] Missing header for INT_MAX

Stephen Wilson wilsons at start.ca
Fri Apr 8 06:42:52 PDT 2011


Hi Marco,

I just fixed up the header issue in r129130.  I think the tree should
build again on Linux.  Let me know if problems persist.


On Fri, Apr 08, 2011 at 02:10:12PM +0200, Marco Minutoli wrote:
> limits.h was missing causing a compile error on INT_MAX.
> ---
>  include/lldb/Core/StreamTee.h |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
> 
> diff --git a/include/lldb/Core/StreamTee.h b/include/lldb/Core/StreamTee.h
> index 28951d1..666146b 100644
> --- a/include/lldb/Core/StreamTee.h
> +++ b/include/lldb/Core/StreamTee.h
> @@ -10,6 +10,9 @@
>  #ifndef liblldb_StreamTee_h_
>  #define liblldb_StreamTee_h_
>  
> +#include <limits.h>
> +
> +
>  #include "lldb/Core/Stream.h"
>  #include "lldb/Host/Mutex.h"
>  
> -- 
> 1.7.1
> 
> _______________________________________________
> lldb-commits mailing list
> lldb-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

-- 
steve




More information about the lldb-commits mailing list