Skip to content

Commit

Permalink
add std::cerr and std::endl
Browse files Browse the repository at this point in the history
missed these on the first pass, mb
  • Loading branch information
ab9rf committed Dec 26, 2024
1 parent 4e3ca72 commit 13867a5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions library/Process-darwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ using namespace DFHack;
using std::string;
using std::map;
using std::vector;
using std::endl;
using std::cerr;


Process::Process(const VersionInfoFactory& known_versions) : identified(false), my_pe(0)
{
Expand Down
2 changes: 2 additions & 0 deletions library/Process-linux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ using namespace DFHack;
using std::string;
using std::map;
using std::vector;
using std::endl;
using std::cerr;

Process::Process(const VersionInfoFactory& known_versions) : identified(false), my_pe(0)
{
Expand Down
3 changes: 3 additions & 0 deletions library/Process-windows.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ using namespace DFHack;
using std::string;
using std::map;
using std::vector;
using std::endl;
using std::cerr;


namespace DFHack
{
Expand Down

0 comments on commit 13867a5

Please sign in to comment.