Bug fix: Didn't compile on Debian, missing #include

This commit is contained in:
Reijo Tomperi 2008-11-22 22:54:56 +00:00
parent 3ba83b6620
commit b8c7543149
1 changed files with 2 additions and 1 deletions

View File

@ -21,9 +21,10 @@
// the code for a known configuration, it generates the code for each configuration. // the code for a known configuration, it generates the code for each configuration.
#include <cstring>
#include "testsuite.h" #include "testsuite.h"
#define UNIT_TESTING // Get access to "private" data in Tokenizer #define UNIT_TESTING // Get access to "private" data in Tokenizer
#include "tokenize.h" #include "tokenize.h"
extern std::ostringstream errout; extern std::ostringstream errout;
class TestTokenizer : public TestFixture class TestTokenizer : public TestFixture