blob: f56001ece7a2b3f4b45c9c29f2527c64dd780b55 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
--- lib/tests/test_wordtokenizer_main.cpp.orig 2018-10-09 17:21:21 UTC
+++ lib/tests/test_wordtokenizer_main.cpp
@@ -3,15 +3,16 @@
#endif
#include <iostream>
-
-#include "asserttestexit.h"
#include "srchilite/wordtokenizer.h"
-#include "srchilite/tostringcollection.h"
using namespace std;
using namespace srchilite;
static ostream &operator <<(ostream &os, const WordTokenizer::WordTokenizerResults::value_type &);
+
+#include "asserttestexit.h"
+#include "srchilite/tostringcollection.h"
+
ostream &operator <<(ostream &os, const WordTokenizer::WordTokenizerResults::value_type &token) {
if (token.first.size()) {
|