Removed the last comma at enum definitions to support C++03 strictly.

This commit is contained in:
Takatoshi Kondo
2013-09-05 13:08:05 +09:00
parent 4ef69da25d
commit b6b2ef5e57
6 changed files with 10 additions and 10 deletions

View File

@@ -50,7 +50,7 @@ public:
enum flags_t {
A = 0,
B = 1,
B = 1
};
flags_t flag;