fixed missing symbol
authorKevron Rees <kevron.m.rees@intel.com>
Thu, 12 Jun 2014 16:48:49 +0000 (09:48 -0700)
committerKevron Rees <kevron.m.rees@intel.com>
Thu, 12 Jun 2014 16:48:49 +0000 (09:48 -0700)
lib/debugout.cpp

index c33d4d0..dd72c47 100644 (file)
@@ -28,7 +28,7 @@ bool DebugOut::throwWarn = false;
 const int DebugOut::Error = 1 << 16;
 const int DebugOut::Warning = 1 << 24;
 
-void debugOut(string message)
+void debugOut(const string &message)
 {
        DebugOut()<<"DEBUG: "<<message.c_str()<<endl;
 }