diff options
| -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)) |

