clang-format

This commit is contained in:
Jesse Beder
2014-03-23 20:08:54 -05:00
parent d508a7cb0d
commit 06bf012d81
22 changed files with 584 additions and 690 deletions

View File

@@ -41,13 +41,7 @@ class Stream : private noncopyable {
void ResetColumn() { m_mark.column = 0; }
private:
enum CharacterSet {
utf8,
utf16le,
utf16be,
utf32le,
utf32be
};
enum CharacterSet { utf8, utf16le, utf16be, utf32le, utf32be };
std::istream& m_input;
Mark m_mark;