diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-05-27 16:27:50 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-05-27 16:27:50 +0000 |
commit | 355bf958ad2d988d046e16b9bb66647ad01c91fe (patch) | |
tree | 2cf12da98e1ac52ef733bdf90864e54f7cdaf394 | |
parent | 446ee4eb4fc4c705a59365252df7a5c253daafa1 (diff) |
Initialize ObjCSenderDispatch in LangOptions.
Patch by Benjamin Kramer.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@72476 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Basic/LangOptions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/clang/Basic/LangOptions.h b/include/clang/Basic/LangOptions.h index 74e70a6985..92370cdd9e 100644 --- a/include/clang/Basic/LangOptions.h +++ b/include/clang/Basic/LangOptions.h @@ -124,6 +124,7 @@ public: OverflowChecking = 0; ObjCGCBitmapPrint = 0; + ObjCSenderDispatch = 0; InstantiationDepth = 99; |