diff options
| author | Alex Langford <apl@fb.com> | 2019-03-06 01:57:04 +0000 |
|---|---|---|
| committer | Alex Langford <apl@fb.com> | 2019-03-06 01:57:04 +0000 |
| commit | a4223f9e5f49f25b5924919a429657977eb0e6e2 (patch) | |
| tree | c9092e4565a47884e743a9917c025709c06752ea | |
| parent | 2e3e65fb6293e59b31f43cb03250d68c6b58820b (diff) | |
| download | bcm5719-llvm-a4223f9e5f49f25b5924919a429657977eb0e6e2.tar.gz bcm5719-llvm-a4223f9e5f49f25b5924919a429657977eb0e6e2.zip | |
[ExpressionParser] Fix ComputeClangResourceDirectory for windows
The function signature of ComputeClangResourceDirectory for windows
wasn't updated when the others changed, causing the windows build to
fail. This should fix that.
llvm-svn: 355471
| -rw-r--r-- | lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp index af9da030fee..b27a7498037 100644 --- a/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp +++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp @@ -29,7 +29,10 @@ using namespace lldb_private; #if defined(_WIN32) -static bool ComputeClangResourceDirectory(FileSpec &file_spec) { return false; } +static bool ComputeClangResourceDirectory(FileSpec &lldb_shlib_spec, + FileSpec &file_spec, bool verify) { + return false; +} #else static bool VerifyClangPath(const llvm::Twine &clang_path) { if (FileSystem::Instance().IsDirectory(clang_path)) |

