[Lldb-commits] [PATCH 1/4] Fixed includes
Johnny Chen
johnny.chen at apple.com
Fri May 13 11:45:49 PDT 2011
Hi Marco,
I'll be reviewing/applying your patches.
Thanks.
Johnny
On May 12, 2011, at 2:39 PM, Marco Minutoli wrote:
> Headers have been moved to /includes/lldb/Interpreter. This patch
> reflects this change.
> ---
> source/Interpreter/OptionGroupArchitecture.cpp | 2 +-
> source/Interpreter/OptionGroupBoolean.cpp | 2 +-
> source/Interpreter/OptionGroupFile.cpp | 2 +-
> source/Interpreter/OptionGroupFormat.cpp | 2 +-
> source/Interpreter/OptionGroupOutputFile.cpp | 2 +-
> source/Interpreter/OptionGroupUInt64.cpp | 2 +-
> source/Interpreter/OptionGroupUUID.cpp | 2 +-
> .../Interpreter/OptionGroupValueObjectDisplay.cpp | 4 ++--
> 8 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/source/Interpreter/OptionGroupArchitecture.cpp b/source/Interpreter/OptionGroupArchitecture.cpp
> index a523f3c..9446f2e 100644
> --- a/source/Interpreter/OptionGroupArchitecture.cpp
> +++ b/source/Interpreter/OptionGroupArchitecture.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupArchitecture.h"
> +#include "lldb/Interpreter/OptionGroupArchitecture.h"
>
> // C Includes
> // C++ Includes
> diff --git a/source/Interpreter/OptionGroupBoolean.cpp b/source/Interpreter/OptionGroupBoolean.cpp
> index f1fd62b..f5403cf 100644
> --- a/source/Interpreter/OptionGroupBoolean.cpp
> +++ b/source/Interpreter/OptionGroupBoolean.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupBoolean.h"
> +#include "lldb/Interpreter/OptionGroupBoolean.h"
>
> // C Includes
> // C++ Includes
> diff --git a/source/Interpreter/OptionGroupFile.cpp b/source/Interpreter/OptionGroupFile.cpp
> index 86acede..b16399a 100644
> --- a/source/Interpreter/OptionGroupFile.cpp
> +++ b/source/Interpreter/OptionGroupFile.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupFile.h"
> +#include "lldb/Interpreter/OptionGroupFile.h"
>
> // C Includes
> // C++ Includes
> diff --git a/source/Interpreter/OptionGroupFormat.cpp b/source/Interpreter/OptionGroupFormat.cpp
> index 213255e..a42099d 100644
> --- a/source/Interpreter/OptionGroupFormat.cpp
> +++ b/source/Interpreter/OptionGroupFormat.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupFormat.h"
> +#include "lldb/Interpreter/OptionGroupFormat.h"
>
> // C Includes
> // C++ Includes
> diff --git a/source/Interpreter/OptionGroupOutputFile.cpp b/source/Interpreter/OptionGroupOutputFile.cpp
> index 2a4e8dc..541c8b4 100644
> --- a/source/Interpreter/OptionGroupOutputFile.cpp
> +++ b/source/Interpreter/OptionGroupOutputFile.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupOutputFile.h"
> +#include "lldb/Interpreter/OptionGroupOutputFile.h"
>
> // C Includes
> // C++ Includes
> diff --git a/source/Interpreter/OptionGroupUInt64.cpp b/source/Interpreter/OptionGroupUInt64.cpp
> index d0ab1ef..76d0260 100644
> --- a/source/Interpreter/OptionGroupUInt64.cpp
> +++ b/source/Interpreter/OptionGroupUInt64.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupUInt64.h"
> +#include "lldb/Interpreter/OptionGroupUInt64.h"
>
> // C Includes
> // C++ Includes
> diff --git a/source/Interpreter/OptionGroupUUID.cpp b/source/Interpreter/OptionGroupUUID.cpp
> index e436f61..b1b3c77 100644
> --- a/source/Interpreter/OptionGroupUUID.cpp
> +++ b/source/Interpreter/OptionGroupUUID.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupUUID.h"
> +#include "lldb/Interpreter/OptionGroupUUID.h"
>
> // C Includes
> // C++ Includes
> diff --git a/source/Interpreter/OptionGroupValueObjectDisplay.cpp b/source/Interpreter/OptionGroupValueObjectDisplay.cpp
> index 3150ea7..edc5dbb 100644
> --- a/source/Interpreter/OptionGroupValueObjectDisplay.cpp
> +++ b/source/Interpreter/OptionGroupValueObjectDisplay.cpp
> @@ -7,7 +7,7 @@
> //
> //===----------------------------------------------------------------------===//
>
> -#include "OptionGroupValueObjectDisplay.h"
> +#include "lldb/Interpreter/OptionGroupValueObjectDisplay.h"
>
> // C Includes
> // C++ Includes
> @@ -123,4 +123,4 @@ OptionGroupValueObjectDisplay::OptionParsingStarting (CommandInterpreter &interp
> // If we don't have any targets, then dynamic values won't do us much good.
> use_dynamic = lldb::eNoDynamicValues;
> }
> -}
> \ No newline at end of file
> +}
> --
> 1.7.3.4
>
> _______________________________________________
> 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