diff --git a/src/sema_manager.cc b/src/sema_manager.cc index 14f303b5..fb4510c6 100644 --- a/src/sema_manager.cc +++ b/src/sema_manager.cc @@ -17,6 +17,7 @@ #include #include #include +#include using namespace clang; using namespace llvm; @@ -403,8 +404,11 @@ void buildPreamble(Session &session, CompilerInvocation &ci, } CclsPreambleCallbacks pc; - if (auto newPreamble = PrecompiledPreamble::Build( - ci, buf.get(), bounds, *de, fs, session.pch, true, pc)) { + if (auto newPreamble = PrecompiledPreamble::Build(ci, buf.get(), bounds, *de, fs, session.pch, true, + #if CINDEX_VERSION_MAJOR >= 0 && CINDEX_VERSION_MINOR > 63 + "", + #endif + pc)) { assert(!ci.getPreprocessorOpts().RetainRemappedFileBuffers); if (oldP) { auto &old_includes = oldP->includes;