diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2015-06-22 16:47:19 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2015-06-22 16:47:19 +0000 |
commit | d70b42472f17545a85ca013016d727d75debf0a3 (patch) | |
tree | 2a2ff596b72580fa83f6b7fdaff5838232916f27 | |
parent | 112b2dab96987efac917c0a860cc6769ac5aae7e (diff) | |
download | llvm-d70b42472f17545a85ca013016d727d75debf0a3.zip llvm-d70b42472f17545a85ca013016d727d75debf0a3.tar.gz llvm-d70b42472f17545a85ca013016d727d75debf0a3.tar.bz2 |
Merging r239199:
------------------------------------------------------------------------
r239199 | labath | 2015-06-05 19:14:14 -0400 (Fri, 05 Jun 2015) | 3 lines
Remove unused editline includes
LLDB included editline in a couple of places, not respecting LLDB_DISABLE_LIBEDIT. As far as I can tell, these includes are not used, so I am removing them.
------------------------------------------------------------------------
Differential Revision: http://reviews.llvm.org/D10324
llvm-svn: 240294
-rw-r--r-- | lldb/tools/driver/Platform.h | 10 | ||||
-rw-r--r-- | lldb/tools/lldb-mi/Platform.h | 7 |
2 files changed, 0 insertions, 17 deletions
diff --git a/lldb/tools/driver/Platform.h b/lldb/tools/driver/Platform.h index 8995512..84536fa 100644 --- a/lldb/tools/driver/Platform.h +++ b/lldb/tools/driver/Platform.h @@ -103,16 +103,6 @@ #include <pthread.h> #include <sys/time.h> - -#if !defined(__ANDROID_NDK__) - #include <histedit.h> - #if defined(__FreeBSD__) || defined(__NetBSD__) - #include <readline/readline.h> - #else - #include <editline/readline.h> - #endif -#endif - #endif #endif // lldb_Platform_h_ diff --git a/lldb/tools/lldb-mi/Platform.h b/lldb/tools/lldb-mi/Platform.h index 7c35131..57e8e27 100644 --- a/lldb/tools/lldb-mi/Platform.h +++ b/lldb/tools/lldb-mi/Platform.h @@ -96,14 +96,7 @@ extern sighandler_t signal(int sig, sighandler_t); #include <termios.h> #include <unistd.h> -#include <histedit.h> #include <pthread.h> #include <sys/time.h> -#if defined(__FreeBSD__) -#include <readline/readline.h> -#else -#include <editline/readline.h> -#endif - #endif |