forked from qt-creator/qt-creator
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:
committed by
Erik Verbruggen
parent
9b41023b68
commit
a60b89bff4
@@ -50,7 +50,7 @@ enum Enum {
|
||||
Invalid,
|
||||
Library,
|
||||
Path,
|
||||
QrcPath,
|
||||
QrcPath
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ class CppCodeModelSettings
|
||||
public:
|
||||
enum PCHUsage {
|
||||
PchUse_None = 1,
|
||||
PchUse_BuildSystem = 2,
|
||||
PchUse_BuildSystem = 2
|
||||
};
|
||||
|
||||
public:
|
||||
|
||||
@@ -38,9 +38,9 @@ namespace ProjectExplorer { class Task; }
|
||||
|
||||
enum CompilerType {
|
||||
CompilerTypeGcc,
|
||||
CompilerTypeClang,
|
||||
CompilerTypeClang
|
||||
#ifdef HAS_MSVC_PARSER
|
||||
CompilerTypeMsvc
|
||||
, CompilerTypeMsvc
|
||||
#endif
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user