aboutsummaryrefslogtreecommitdiffstats
path: root/src/ContextUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ContextUtils.h')
-rw-r--r--src/ContextUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ContextUtils.h b/src/ContextUtils.h
index 7783abe8..6bc85e3e 100644
--- a/src/ContextUtils.h
+++ b/src/ContextUtils.h
@@ -42,7 +42,7 @@ class CXXMethodDecl;
class ParentMap;
}
-namespace ContextUtils
+namespace clazy
{
/**
@@ -135,7 +135,7 @@ T* firstContextOfType(clang::DeclContext *context)
if (llvm::isa<T>(context))
return llvm::cast<T>(context);
- return ContextUtils::firstContextOfType<T>(context->getParent());
+ return clazy::firstContextOfType<T>(context->getParent());
}