Removes commas from last items in enums (a C++ standard compliance fix).

This commit is contained in:
vladlosev
2011-04-08 01:32:32 +00:00
parent 52277c919e
commit ab29bb6fcd
2 changed files with 4 additions and 4 deletions

View File

@@ -305,7 +305,7 @@ inline void Expect(bool condition, const char* file, int line) {
// Severity level of a log.
enum LogSeverity {
INFO = 0,
WARNING = 1,
WARNING = 1
};
// Valid values for the --gmock_verbose flag.