diff options
| author | Pavel Labath <labath@google.com> | 2018-06-14 09:08:54 +0000 |
|---|---|---|
| committer | Pavel Labath <labath@google.com> | 2018-06-14 09:08:54 +0000 |
| commit | 9cf22d03dd77524605834f334e6d543d71db82cb (patch) | |
| tree | 8a0140f1832449bc7af1a300234818ed2d71f991 | |
| parent | bb399f80138188faced785b748264429e9956670 (diff) | |
| download | bcm5719-llvm-9cf22d03dd77524605834f334e6d543d71db82cb.tar.gz bcm5719-llvm-9cf22d03dd77524605834f334e6d543d71db82cb.zip | |
Fix includes in PlatformAppleSimulator.h
This unbreaks the cmake build. Other plugins also use the include paths
starting with Plugins/..., so I am hoping this will work for the xcode build
too.
llvm-svn: 334697
| -rw-r--r-- | lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h b/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h index 44feb019dc7..2536854e963 100644 --- a/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h +++ b/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h @@ -16,8 +16,8 @@ // Other libraries and framework includes // Project includes -#include "PlatformDarwin.h" -#include "PlatformiOSSimulatorCoreSimulatorSupport.h" +#include "Plugins/Platform/MacOSX/PlatformDarwin.h" +#include "Plugins/Platform/MacOSX/objcxx/PlatformiOSSimulatorCoreSimulatorSupport.h" #include "lldb/Utility/FileSpec.h" #include "llvm/ADT/Optional.h" |

