summaryrefslogtreecommitdiff
path: root/compilerplugins/clang/store/derivedclass.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'compilerplugins/clang/store/derivedclass.cxx')
-rw-r--r--compilerplugins/clang/store/derivedclass.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/store/derivedclass.cxx b/compilerplugins/clang/store/derivedclass.cxx
index bc4a396930e2..a1df0c253bda 100644
--- a/compilerplugins/clang/store/derivedclass.cxx
+++ b/compilerplugins/clang/store/derivedclass.cxx
@@ -51,7 +51,7 @@ bool DerivedClass::VisitCXXRecordDecl(CXXRecordDecl const * decl) {
!decl->hasAnyDependentBases() &&
!decl->forallBases(BaseCheck, &BaseClassName)) {
string warning_msg("class %0 derives from ");
- // no idea how BaseClassName can be 0 sometimes..
+ // no idea how BaseClassName can be 0 sometimes...
if (BaseClassName)
warning_msg += BaseClassName;
report(