Add a missing C++ standard library include. Needed to compile using GCC 4.3.1 and non-GCC C++ compilers where the standard library headers don't include each other.

This commit is contained in:
richardash1981 2008-06-27 15:04:31 +00:00
parent 9a273df119
commit d3d8ceb45d

View File

@ -48,6 +48,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdexcept> #include <stdexcept>
#include <string> #include <string>
#include <cstring>
#include <assert.h> #include <assert.h>
#include <limits.h> #include <limits.h>