diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-10-02 20:31:52 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-10-02 20:31:52 +0000 |
commit | 9e28fe60bbfa5de196ce4aa396210bf10fc5c266 (patch) | |
tree | 973dcf69ad1fc416bedba71cccc989e569820912 /include/clang/StaticAnalyzer/Core/AnalyzerOptions.h | |
parent | 2a46533633441176e93b484739a0a27e07150b63 (diff) |
Change AnalyzerOptions::mayInlineCXXMemberFunction to default populate
the config string table. Also setup a test for dumping the analyzer
configuration for C++.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@165040 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/StaticAnalyzer/Core/AnalyzerOptions.h')
-rw-r--r-- | include/clang/StaticAnalyzer/Core/AnalyzerOptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h b/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h index d6dee64e70..852f8bb9c5 100644 --- a/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h +++ b/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h @@ -204,7 +204,7 @@ public: /// This is controlled by the 'c++-inlining' config option. /// /// \sa CXXMemberInliningMode - bool mayInlineCXXMemberFunction(CXXInlineableMemberKind K) const; + bool mayInlineCXXMemberFunction(CXXInlineableMemberKind K); /// Returns true if ObjectiveC inlining is enabled, false otherwise. bool mayInlineObjCMethod(); |