diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-16 09:35:07 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-16 09:35:07 +0200 |
commit | 8ab9ea00b62d357195d73c4518646255a2b723cd (patch) | |
tree | 39c626df4bd947527e72dbd3afed36b8ad96fa22 /compilerplugins | |
parent | e36badb98d0bb5866a297cb51c3e95cdce62d8da (diff) |
...and another
Change-Id: If9d85236177c819c159d1b836e806fc2b03da45c
Diffstat (limited to 'compilerplugins')
-rw-r--r-- | compilerplugins/clang/salbool.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/salbool.cxx b/compilerplugins/clang/salbool.cxx index e541766847a3..6e921023fcb8 100644 --- a/compilerplugins/clang/salbool.cxx +++ b/compilerplugins/clang/salbool.cxx @@ -31,7 +31,7 @@ bool isSalBool(QualType type) { // expiresBefore members as defined in salhelper/source/timer.cxx as inlined: bool isInlined(FunctionDecl const & decl) { #if (__clang_major__ == 3 && __clang_minor__ >= 3) || __clang_major__ > 3 - return decl->isInlined(); + return decl.isInlined(); #else (void)decl; return false; |