Skip to content
Snippets Groups Projects
Commit a60b89bf authored by Thiago Macieira's avatar Thiago Macieira Committed by Erik Verbruggen
Browse files

Remove trailing comma in an enum


qmljsconstants.h(53): warning #271: trailing comma is nonstandard
[and many more]

Change-Id: I2224b7fe6ae1954b27d2b2bfebd469e1ca472f7b
Reviewed-by: default avatarKurt Pattyn <pattyn.kurt@gmail.com>
Reviewed-by: default avatarErik Verbruggen <erik.verbruggen@digia.com>
parent 9b41023b
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ enum Enum { ...@@ -50,7 +50,7 @@ enum Enum {
Invalid, Invalid,
Library, Library,
Path, Path,
QrcPath, QrcPath
}; };
} }
......
...@@ -46,7 +46,7 @@ class CppCodeModelSettings ...@@ -46,7 +46,7 @@ class CppCodeModelSettings
public: public:
enum PCHUsage { enum PCHUsage {
PchUse_None = 1, PchUse_None = 1,
PchUse_BuildSystem = 2, PchUse_BuildSystem = 2
}; };
public: public:
......
...@@ -38,9 +38,9 @@ namespace ProjectExplorer { class Task; } ...@@ -38,9 +38,9 @@ namespace ProjectExplorer { class Task; }
enum CompilerType { enum CompilerType {
CompilerTypeGcc, CompilerTypeGcc,
CompilerTypeClang, CompilerTypeClang
#ifdef HAS_MSVC_PARSER #ifdef HAS_MSVC_PARSER
CompilerTypeMsvc , CompilerTypeMsvc
#endif #endif
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment