Changeset 3301 for code/trunk/src/util/OutputHandler.cc
- Timestamp:
- Jul 18, 2009, 4:03:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/util/OutputHandler.cc
r2710 r3301 97 97 void OutputHandler::setSoftDebugLevel(OutputHandler::OutputDevice device, int level) 98 98 { 99 OutputHandler::getOutStream().softDebugLevel_[ (unsigned int)device] = level;99 OutputHandler::getOutStream().softDebugLevel_[static_cast<unsigned int>(device)] = level; 100 100 } 101 101 … … 107 107 int OutputHandler::getSoftDebugLevel(OutputHandler::OutputDevice device) 108 108 { 109 return OutputHandler::getOutStream().softDebugLevel_[ (unsigned int)device];109 return OutputHandler::getOutStream().softDebugLevel_[static_cast<unsigned int>(device)]; 110 110 } 111 111
Note: See TracChangeset
for help on using the changeset viewer.