messagereader.cpp: drop trailing comma

This commit is contained in:
Philipp A. Hartmann 2015-04-01 22:39:01 +02:00
parent b484407999
commit 3b8158086d

View File

@ -54,7 +54,7 @@ struct MessageHandler
enum State { enum State {
kExpectObjectStart, kExpectObjectStart,
kExpectNameOrObjectEnd, kExpectNameOrObjectEnd,
kExpectValue, kExpectValue
}state_; }state_;
std::string name_; std::string name_;
}; };