diff options
Diffstat (limited to 'decoder/stringlib_test.cc')
-rwxr-xr-x | decoder/stringlib_test.cc | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/decoder/stringlib_test.cc b/decoder/stringlib_test.cc deleted file mode 100755 index f66cdbeb..00000000 --- a/decoder/stringlib_test.cc +++ /dev/null @@ -1,17 +0,0 @@ -#define STRINGLIB_DEBUG -#include "stringlib.h" - -using namespace std; -struct print { - template <class S> - void operator()(S const& s) const { - cout<<s<<endl; - } -}; - -char p[]=" 1 are u 2 serious?"; -int main(int argc, char *argv[]) { - std::string const& w="verylongword"; - VisitTokens(p,print()); - VisitTokens(w,print()); -} |