[Lldb-commits] [lldb] a53874b - [lldb] Fix modules build by adding missing include
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 22 00:14:59 PDT 2020
Author: Raphael Isemann
Date: 2020-04-22T09:14:09+02:00
New Revision: a53874b7e4c82416b8eb48bbd45b5cb93f1e09d3
URL: https://github.com/llvm/llvm-project/commit/a53874b7e4c82416b8eb48bbd45b5cb93f1e09d3
DIFF: https://github.com/llvm/llvm-project/commit/a53874b7e4c82416b8eb48bbd45b5cb93f1e09d3.diff
LOG: [lldb] Fix modules build by adding missing include
This header is using FileSpec so we should at least include the forward header.
Added:
Modified:
lldb/include/lldb/Utility/XcodeSDK.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/Utility/XcodeSDK.h b/lldb/include/lldb/Utility/XcodeSDK.h
index b186ab4a7091..552c51c36844 100644
--- a/lldb/include/lldb/Utility/XcodeSDK.h
+++ b/lldb/include/lldb/Utility/XcodeSDK.h
@@ -9,6 +9,7 @@
#ifndef LLDB_UTILITY_SDK_H
#define LLDB_UTILITY_SDK_H
+#include "lldb/lldb-forward.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/VersionTuple.h"
#include <tuple>
More information about the lldb-commits
mailing list