From 6a253d378bc05c30b3d9f32fdaf973714de3e99c Mon Sep 17 00:00:00 2001 From: Jordan Rupprecht Date: Mon, 29 Jul 2019 17:22:10 +0000 Subject: [lldb] Qualify includes of Properties[Enum].inc files. NFC Summary: This is a bit more explicit, and makes it possible to build LLDB without varying the -I lines per-directory. (The latter is useful because many build systems only allow this to be configured per-library, and LLDB is insufficiently layered to be split into multiple libraries on stricter build systems). (My comment on D65185 has some more context) Reviewers: JDevlieghere, labath, chandlerc, jdoerfert Reviewed By: labath Subscribers: mgorny, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D65397 Patch by Sam McCall! llvm-svn: 367241 --- lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp') diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 51670adc2a6..cd59fc1179b 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -111,11 +111,11 @@ void DumpProcessGDBRemotePacketHistory(void *p, const char *path) { namespace { #define LLDB_PROPERTIES_processgdbremote -#include "Properties.inc" +#include "ProcessGDBRemoteProperties.inc" enum { #define LLDB_PROPERTIES_processgdbremote -#include "PropertiesEnum.inc" +#include "ProcessGDBRemotePropertiesEnum.inc" }; class PluginProperties : public Properties { -- cgit v1.2.3