From 1f36ae0e9e635a792b4a5720b1f0ebf1b635eec9 Mon Sep 17 00:00:00 2001 From: Kevron Rees Date: Sat, 18 May 2013 19:40:50 -0700 Subject: [PATCH] fixed overflow warning --- lib/debugout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/debugout.cpp b/lib/debugout.cpp index e0c8a49..36053dc 100644 --- a/lib/debugout.cpp +++ b/lib/debugout.cpp @@ -23,8 +23,8 @@ using namespace std; int DebugOut::debugThreshhold = 0; std::streambuf * DebugOut::buf = cout.rdbuf(); -const int DebugOut::Error = 9999999999; -const int DebugOut::Warning = 9999999998; +const int DebugOut::Error = 999999; +const int DebugOut::Warning = 999998; void debugOut(string message) { -- 2.7.4