]> git.tdb.fi Git - libs/core.git/commitdiff
Style fix: add whitespace
authorMikko Rasa <tdb@tdb.fi>
Fri, 6 Jul 2012 12:23:03 +0000 (15:23 +0300)
committerMikko Rasa <tdb@tdb.fi>
Fri, 6 Jul 2012 12:23:03 +0000 (15:23 +0300)
source/fs/path.cpp
source/fs/path.h
source/io/buffered.cpp
source/strings/fmt.h
source/strings/regex.cpp

index 90c4d70e2a91b55789eb5e2b5a8dc4ecb5bf1598..035e2200609bf5f6b4f1c4e6ca59a31a6e22cf6f 100644 (file)
@@ -210,7 +210,7 @@ Path::Iterator::Iterator(const Path &p):
        start(0)
 {
        if(path.path.empty())
-               start=end = string::npos;
+               start = end = string::npos;
        else if(path.path[0]==DIRSEP)
                end = 1;
 #ifdef WIN32
index 6aa16f6d08191a9d7d4000f8f9be65ee4d6217a6..c3c599a9e03d0a0dae8b9e47187086b49b407d1a 100644 (file)
@@ -30,7 +30,7 @@ public:
 
        private:
                const Path &path;
-               std::string::size_type start,end;
+               std::string::size_type start, end;
 
                Iterator(const Path &);
        public:
index be4c8d47c8bc263d516846c4053018b9696f2824..53f83912a67bcf8ad5237cce37908afd44651359 100644 (file)
@@ -48,7 +48,7 @@ void Buffered::flush()
                }
        }
        else if(cur_op==M_READ)
-               begin=end = buf;
+               begin = end = buf;
 }
 
 unsigned Buffered::do_write(const char *data, unsigned size)
@@ -101,7 +101,7 @@ unsigned Buffered::do_read(char *data, unsigned size)
                // Give out whatever is in the buffer already
                memcpy(data, begin, end-begin);
                unsigned ret = end-begin;
-               begin=end = buf;
+               begin = end = buf;
 
                data += ret;
                size -= ret;
index 84690d174388ce288eb78243d9973b1f2662d1e0..baf2a76f9b96ae51e7cf7d845193f39fcbc8c9a5 100644 (file)
@@ -91,19 +91,19 @@ private:
 public:
        Fmt &width(unsigned w) { wd = w; return *this; }
        Fmt &precision(unsigned p) { prec = p; return *this; }
-       Fmt &showpos(bool s=true) { spos = s; return *this; }
+       Fmt &showpos(bool s = true) { spos = s; return *this; }
        Fmt &fill(wchar_t f) { fillc = f; return *this; }
        Fmt &fixed() { fmode = FIXED; return *this; }
        Fmt &scientific() { fmode = SCI; return *this; }
-       Fmt &showpoint(bool s=true) { spoint = s; return *this; }
-       Fmt &showbase(bool s=true) { sbase = s; return *this; }
+       Fmt &showpoint(bool s = true) { spoint = s; return *this; }
+       Fmt &showbase(bool s = true) { sbase = s; return *this; }
        Fmt &left() { align = LEFT; return *this; }
        Fmt &right() { align = RIGHT; return *this; }
        Fmt &dec() { base = DEC; return *this; }
        Fmt &hex() { base = HEX; return *this; }
        Fmt &oct() { base = OCT; return *this; }
        Fmt &bin() { base = BIN; return *this; }
-       Fmt &uppercase(bool u=true) { ucase = u; return *this; }
+       Fmt &uppercase(bool u = true) { ucase = u; return *this; }
        Fmt &numeric() { type = NUM; return *this; }
        Fmt &character() { type = CHAR; return *this; }
        Fmt &string() { type = STR; return *this; }
index 60b8ed10294aa1e83b399cb3605a3ef9750b597b..67157c9b185e434adf995ec75eeb3f122869ea9a 100644 (file)
@@ -310,7 +310,7 @@ Regex::Code Regex::parse_brackets(const string &str, string::const_iterator &ite
        unsigned char mask[32] = {0};
        unsigned type = 0;
        bool range = false;
-       unsigned char first=0, last = 0;
+       unsigned char first = 0, last = 0;
        for(string::const_iterator i=iter; i!=end; ++i)
        {
                unsigned char c = *i;