aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/cpptools/cppcodeformatter.h
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2010-12-16 12:05:48 +0100
committerRoberto Raggi <roberto.raggi@nokia.com>2010-12-16 12:05:48 +0100
commitb4e421062fc9463cb42c5846dcb84b25f1a5f0ae (patch)
treee868953fda96eaa047b58156404a4b156c462ba6 /src/plugins/cpptools/cppcodeformatter.h
parent63522a04e5291c96ab084e111497e2dacc05257b (diff)
Removed stray tokens and fixed warnings/errors when compiling with pedantic C++ compilers.
Diffstat (limited to 'src/plugins/cpptools/cppcodeformatter.h')
-rw-r--r--src/plugins/cpptools/cppcodeformatter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/cpptools/cppcodeformatter.h b/src/plugins/cpptools/cppcodeformatter.h
index e828b7b7db..7efbf7107f 100644
--- a/src/plugins/cpptools/cppcodeformatter.h
+++ b/src/plugins/cpptools/cppcodeformatter.h
@@ -50,7 +50,7 @@ namespace TextEditor {
class TabSettings;
}
-namespace CppTools {
+namespace CppTools {
namespace Internal {
class CppCodeFormatterData;
}
@@ -170,7 +170,7 @@ public: // must be public to make Q_GADGET introspection work
assign_open, // after an assignment token
expression, // after a '=' in a declaration_start once we're sure it's not '= {'
- initializer, // after a '=' in a declaration start
+ initializer // after a '=' in a declaration start
};
Q_ENUMS(StateType)