Fixed compile error in older gcc's for trailing comma in enum.

Change-Id: I60f6da32fb2a30557fcf842624f68ca184f65e1f
Tested: on Linux.
This commit is contained in:
Wouter van Oortmerssen
2015-07-22 12:35:40 -07:00
parent 62af533820
commit 12ca3e054e

View File

@@ -23,7 +23,7 @@
enum OutputFormat { enum OutputFormat {
kDecimal, kDecimal,
kHexadecimal, kHexadecimal,
kHexadecimal0x, kHexadecimal0x
}; };
int main(int argc, char* argv[]) { int main(int argc, char* argv[]) {