Switch to unified view

a/src/utils/utf8iter.cpp b/src/utils/utf8iter.cpp
...
...
20
#include <string>
20
#include <string>
21
#include <iostream>
21
#include <iostream>
22
#include <vector>
22
#include <vector>
23
23
24
24
25
#include "debuglog.h"
25
#include "log.h"
26
#include "transcode.h"
26
#include "transcode.h"
27
27
28
#ifndef NO_NAMESPACES
28
#ifndef NO_NAMESPACES
29
using namespace std;
29
using namespace std;
30
#endif /* NO_NAMESPACES */
30
#endif /* NO_NAMESPACES */
...
...
180
    fprintf(stderr, "Transcode back to utf-8 compare to in failed\n");
180
    fprintf(stderr, "Transcode back to utf-8 compare to in failed\n");
181
    exit(1);
181
    exit(1);
182
    }
182
    }
183
    exit(0);
183
    exit(0);
184
}
184
}
185