Add header dependencies that prevented linux build

There were several files with dependancies on vector and cmath that
caused compiler errors under linux. In addition, there was a printf
formatting error that threw a compiler error as well
This commit is contained in:
Doug Johnson
2016-05-12 01:40:30 -06:00
parent 417eacb48c
commit 48a2435bde
5 changed files with 7 additions and 2 deletions

View File

@@ -23,6 +23,7 @@
#include <llvm/ADT/BitVector.h>
#pragma warning(pop)
#else
#include <cmath>
#include <llvm/ADT/BitVector.h>
#endif // XE_COMPILER_MSVC

View File

@@ -22,6 +22,7 @@
#include <llvm/ADT/BitVector.h>
#pragma warning(pop)
#else
#include <cmath>
#include <llvm/ADT/BitVector.h>
#endif // XE_COMPILER_MSVC