From 5d17e1ec8540d966092d459f53fd2074b6a3a3f4 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 8 Jan 2015 12:37:05 +0200 Subject: [PATCH] Fix typo Change-Id: Ifdbcbcc51c29dc14b2a3b4c845481b45300313d6 --- compilerplugins/clang/compat.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compilerplugins/clang/compat.hxx b/compilerplugins/clang/compat.hxx index 44452bd58733..66963db88a63 100644 --- a/compilerplugins/clang/compat.hxx +++ b/compilerplugins/clang/compat.hxx @@ -60,7 +60,7 @@ inline bool isInExternCContext(clang::FunctionDecl const & decl) { #if (__clang_major__ == 3 && __clang_minor__ >= 4) || __clang_major__ > 3 return decl.isInExternCContext(); #else - return isExternalCContext(*decl.getCanonicalDecl()->getDeclContext()); + return isExternCContext(*decl.getCanonicalDecl()->getDeclContext()); #endif }