]> git.tdb.fi Git - libs/datafile.git/commitdiff
Style update: remove alignment
authorMikko Rasa <tdb@tdb.fi>
Mon, 25 Jul 2011 14:07:49 +0000 (17:07 +0300)
committerMikko Rasa <tdb@tdb.fi>
Mon, 25 Jul 2011 14:07:49 +0000 (17:07 +0300)
source/parser.h
source/statement.h
source/textparser.cpp
source/textparser.h

index a89799bd0558cf54c6fbb2e547e406afd9b132a4..40907dcdb86b4b6b5a21b7635463f5d242b310f2 100644 (file)
@@ -19,11 +19,11 @@ statements may be read.
 class Parser
 {
 private:
-       Input       in;
+       Input in;
        std::string main_src;
        std::string src;
-       bool        good;
-       ParserMode  *mode;
+       bool good;
+       ParserMode *mode;
 
 public:
        Parser(IO::Base &i, const std::string &s);
index b26f2c88efc2f709d5853eb97cc265b1155d823a..f9287a51714f56e89719db5c2a3b6871f0889b81 100644 (file)
@@ -13,10 +13,10 @@ public:
        typedef std::vector<Value> Arguments;
 
        std::string keyword;
-       Arguments   args;
-       bool        valid;
+       Arguments args;
+       bool valid;
        std::string source;
-       unsigned    line;
+       unsigned line;
        std::list<Statement> sub;
 
        Statement();
index 9545cdcdc7f2e77018d23f341f5aeb68e9da8007..56c9bb2b07d75fbbdac9394b4edf42c314d6fdb2 100644 (file)
@@ -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)
        {
index 2aefea91406a2dfe17b9d67835b255a26a0dade8..eb452330136fa99d93535fed9d0cb0b194698cea 100644 (file)
@@ -17,10 +17,10 @@ public:
 protected:
        Statement parse_statement(const Token *);
        Token parse_token();
-       bool  is_delimiter(int);
-       bool  isodigit(int);
+       bool is_delimiter(int);
+       bool isodigit(int);
        std::string get_location();
-       void  parse_error(int, const char *);
+       void parse_error(int, const char *);
 };
 
 } // namespace DataFile