Changeset 8858 for code/trunk/src/libraries/util/SubString.cc
- Timestamp:
- Aug 23, 2011, 12:45:53 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:ignore
-
old new 1 1 build 2 2 codeblocks 3 vs 3 4 dependencies
-
- Property svn:mergeinfo changed
/code/branches/output (added) merged: 8739-8740,8765,8771-8772,8774-8780,8787-8789,8794-8799,8801,8803-8812,8814,8816-8817,8820,8822,8825-8837,8840,8844,8846,8848-8850,8853-8854
- Property svn:ignore
-
code/trunk/src/libraries/util/SubString.cc
r7401 r8858 45 45 #include "SubString.h" 46 46 #include <cstdio> 47 #include " Debug.h"47 #include "Output.h" 48 48 49 49 namespace orxonox … … 513 513 void SubString::debug() const 514 514 { 515 COUT(0) << "Substring-information::count=" << this->tokens_.size() << " ::";515 orxout(debug_output) << "Substring-information::count=" << this->tokens_.size() << " ::"; 516 516 for (unsigned int i = 0; i < this->tokens_.size(); ++i) 517 COUT(0) << "s" << i << "='" << this->tokens_[i].c_str() << "'::";518 COUT(0) << std::endl;517 orxout(debug_output) << "s" << i << "='" << this->tokens_[i].c_str() << "'::"; 518 orxout(debug_output) << endl; 519 519 } 520 520 }
Note: See TracChangeset
for help on using the changeset viewer.