diff --git a/library/DFProcess.h b/library/DFProcess.h index 3a023ca2d..c710d7e88 100644 --- a/library/DFProcess.h +++ b/library/DFProcess.h @@ -27,6 +27,7 @@ distribution. #include "Tranquility.h" #include "Export.h" +#include namespace DFHack { @@ -55,7 +56,7 @@ namespace DFHack } inline void print() { - cout << hex << start << " - " << end << "|" << (read ? "r" : "-") << (write ? "w" : "-") << (execute ? "x" : "-") << "|" << name << endl; + std::cout << std::hex << start << " - " << end << "|" << (read ? "r" : "-") << (write ? "w" : "-") << (execute ? "x" : "-") << "|" << name << std::endl; } };