Fix missing headers in tests for windows

This commit is contained in:
Danny Robson 2013-08-05 16:45:03 +10:00
parent 0c4f9cb275
commit bb19448ee9
2 changed files with 7 additions and 3 deletions

View File

@ -4,6 +4,7 @@
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <ctime>
using namespace std;
@ -53,4 +54,6 @@ main (int, char **) {
srand (time (NULL));
test_bool ();
test_float ();
return EXIT_SUCCESS;
}

View File

@ -1,10 +1,11 @@
#include <string>
#include <vector>
#include "../version.hpp"
#include "../debug.hpp"
#include <string>
#include <vector>
#include <cstdlib>
using namespace std;
using namespace util;