aboutsummaryrefslogtreecommitdiffstats
path: root/src/FixItUtils.h
diff options
context:
space:
mode:
authorSergio Martins <iamsergio@gmail.com>2017-12-18 18:46:19 +0000
committerSergio Martins <iamsergio@gmail.com>2017-12-18 19:00:55 +0000
commit1d475a100c09130109ce887a6cbe79d0679f7e29 (patch)
tree4511a62a6d191a9ad9936d2b3ff9a6a483a8e1c4 /src/FixItUtils.h
parentbc639f26f870f544d4a1aa1e7e0d88b6efd43960 (diff)
Rename the *Utils:: namespace to clazy::
No reason to have a separate namespace
Diffstat (limited to 'src/FixItUtils.h')
-rw-r--r--src/FixItUtils.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FixItUtils.h b/src/FixItUtils.h
index aed09b4f..95cbed3a 100644
--- a/src/FixItUtils.h
+++ b/src/FixItUtils.h
@@ -39,7 +39,7 @@ class CallExpr;
class CXXMemberCallExpr;
}
-namespace FixItUtils {
+namespace clazy {
/**
* Replaces whatever is in range, with replacement
@@ -82,7 +82,7 @@ CLAZYLIB_EXPORT clang::SourceLocation locForNextToken(const clang::ASTContext *c
*
* ^ // expr->getLocStart()
* ^ // expr->getLocEnd()
- * ^ // FixItUtils::locForEndOfToken(expr->getLocStart())
+ * ^ // clazy::locForEndOfToken(expr->getLocStart())
*/
CLAZYLIB_EXPORT clang::SourceLocation locForEndOfToken(const clang::ASTContext *context, clang::SourceLocation start, int offset = 0);