summaryrefslogtreecommitdiff
path: root/compilerplugins
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-09-16 09:35:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-09-16 09:35:07 +0200
commit8ab9ea00b62d357195d73c4518646255a2b723cd (patch)
tree39c626df4bd947527e72dbd3afed36b8ad96fa22 /compilerplugins
parente36badb98d0bb5866a297cb51c3e95cdce62d8da (diff)
...and another
Change-Id: If9d85236177c819c159d1b836e806fc2b03da45c
Diffstat (limited to 'compilerplugins')
-rw-r--r--compilerplugins/clang/salbool.cxx2
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;