commit | 2e6cbfc3e72abc242b87f338c540afb9708a1df5 | [log] [tgz] |
---|---|---|
author | Shinichiro Hamaji <[email protected]> | Tue Jun 16 18:46:50 2015 +0900 |
committer | Shinichiro Hamaji <[email protected]> | Thu Jun 18 11:25:43 2015 +0900 |
tree | f5ee09246631bbde5dd16ed9c35fc8107a676352 | |
parent | f019c3bd71b47ff6f849930fd4d386bc969970c2 [diff] [blame] |
[C++] Fix patsubst.mk
diff --git a/strutil.h b/strutil.h index f22bd40..7369787 100644 --- a/strutil.h +++ b/strutil.h
@@ -31,6 +31,16 @@ StringPiece in_; }; +class WordWriter { + public: + explicit WordWriter(string* o); + void Write(StringPiece s); + + private: + string* out_; + bool needs_space_; +}; + void InitSymtab(); void QuitSymtab(); StringPiece Intern(StringPiece s);