]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/textparser.cpp
Style update: remove alignment
[libs/datafile.git] / source / textparser.cpp
index 930ce875d782a58a43f6063ce30a4c3aab0b66ef..56c9bb2b07d75fbbdac9394b4edf42c314d6fdb2 100644 (file)
@@ -1,4 +1,4 @@
-#include <msp/strings/formatter.h>
+#include <msp/strings/format.h>
 #include <msp/strings/utils.h>
 #include "input.h"
 #include "textparser.h"
@@ -21,8 +21,8 @@ Statement TextParser::parse()
 Statement TextParser::parse_statement(const Token *t)
 {
        Statement result;
-       bool      sub = false;
-       bool      finish = false;
+       bool sub = false;
+       bool finish = false;
 
        while(in)
        {
@@ -160,8 +160,8 @@ Token TextParser::parse_token()
        };
 
        ParseState state = INIT;
-       string     buf;
-       bool       escape = false;
+       string buf;
+       bool escape = false;
 
        while(in || state==INIT)
        {