add iostream to DFProcess.h include, std:: prefix to the output line, DT was getting mad about them not being defined

develop
belal 2010-03-14 20:26:32 -04:00
parent 76939afe50
commit a2eb3a6892
1 changed files with 2 additions and 1 deletions

@ -27,6 +27,7 @@ distribution.
#include "Tranquility.h"
#include "Export.h"
#include <iostream>
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;
}
};