Remove trailing comma in an enum

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

Change-Id: I2224b7fe6ae1954b27d2b2bfebd469e1ca472f7b
Reviewed-by: Kurt Pattyn <pattyn.kurt@gmail.com>
Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
This commit is contained in:
Thiago Macieira
2013-12-05 23:22:48 -08:00
committed by Erik Verbruggen
parent 9b41023b68
commit a60b89bff4
3 changed files with 4 additions and 4 deletions

View File

@@ -50,7 +50,7 @@ enum Enum {
Invalid, Invalid,
Library, Library,
Path, Path,
QrcPath, QrcPath
}; };
} }

View File

@@ -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:

View File

@@ -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
}; };