Changeset 5747 for code/trunk/src/libraries/core/input
- Timestamp:
- Sep 19, 2009, 11:17:51 PM (15 years ago)
- Location:
- code/trunk/src/libraries/core/input
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/input/InputDevice.h
r5738 r5747 42 42 43 43 #include "util/Debug.h" 44 #include "util/Exception.h" 44 45 #include "core/Clock.h" 45 46 #include "InputState.h" … … 145 146 catch (...) 146 147 { 147 COUT(1) << this->getClassName() << " destruction failed! Potential resource leak!" << std::endl; 148 COUT(1) << this->getClassName() << " destruction failed: " << Exception::handleMessage() << std::endl 149 << " Potential resource leak!" << std::endl; 148 150 } 149 151 } -
code/trunk/src/libraries/core/input/InputManager.cc
r5738 r5747 330 330 catch (...) 331 331 { 332 CCOUT(1) << className << " destruction failed! Potential resource leak!" << std::endl; 332 COUT(1) << className << " destruction failed: " << Exception::handleMessage() << std::endl 333 << " Potential resource leak!" << std::endl; 333 334 } 334 335 } … … 342 343 catch (...) 343 344 { 344 CCOUT(1) << "OIS::InputManager destruction failed! Potential resource leak!" << std::endl; 345 COUT(1) << "OIS::InputManager destruction failed" << Exception::handleMessage() << std::endl 346 << " Potential resource leak!" << std::endl; 345 347 } 346 348 oisInputManager_ = NULL;
Note: See TracChangeset
for help on using the changeset viewer.