aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-01-31 14:27:38 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-01-31 14:27:38 +0000
commit335078b0ffa844a963fdebab58b80f645ba32088 (patch)
tree59f6c97945225ccd2a27f776e065fbd0572a1a5b
parent4d0e9f58076037d84a7da0b407c3de8f76a9d552 (diff)
Attempt to fix Windows build breakage.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174060 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/libclang/Indexing.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/libclang/Indexing.cpp b/tools/libclang/Indexing.cpp
index 6f01a0b349..e8977e09ed 100644
--- a/tools/libclang/Indexing.cpp
+++ b/tools/libclang/Indexing.cpp
@@ -55,7 +55,8 @@ class SessionSkipBodyData { };
class TUSkipBodyControl {
public:
TUSkipBodyControl(SessionSkipBodyData &sessionData,
- PPConditionalDirectiveRecord &ppRec) { }
+ PPConditionalDirectiveRecord &ppRec,
+ Preprocessor &pp) { }
bool isParsed(SourceLocation Loc, FileID FID, const FileEntry *FE) {
return false;
}