Changeset 8858 for code/trunk/src/libraries/core/NamespaceNode.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/core/NamespaceNode.cc
r6417 r8858 28 28 29 29 #include "NamespaceNode.h" 30 #include "util/ Debug.h"30 #include "util/Output.h" 31 31 32 32 namespace orxonox … … 70 70 if (this->bRoot_) 71 71 { 72 COUT(2) << "Warning: Can't go to enclosing namespace with '..' operator in namespace " << this->name_ << ", namespace is root." << std::endl;72 orxout(internal_warning) << "Can't go to enclosing namespace with '..' operator in namespace " << this->name_ << ", namespace is root." << endl; 73 73 nodes = this->getNodeRelative(secondPart); 74 74 } 75 75 else if (!this->parent_) 76 76 { 77 COUT(2) << "Warning: Can't go to enclosing namespace with '..' operator in namespace " << this->name_ << ", no parent namespace set." << std::endl;77 orxout(internal_warning) << "Can't go to enclosing namespace with '..' operator in namespace " << this->name_ << ", no parent namespace set." << endl; 78 78 nodes = this->getNodeRelative(secondPart); 79 79 } … … 91 91 if (it->second->isHidden()) 92 92 { 93 COUT(2) << "Warning: Subnamespace '" << firstPart << "' in namespace '" << this->name_ << "' is hidden and can't be accessed." << std::endl;93 orxout(internal_warning) << "Subnamespace '" << firstPart << "' in namespace '" << this->name_ << "' is hidden and can't be accessed." << endl; 94 94 nodes.insert(this); 95 95 } … … 115 115 if (!bFoundMatchingNamespace) 116 116 { 117 COUT(2) << "Warning: No file included with name '" << firstPart.substr(1, std::string::npos) << "' at this part of the level file, using parent namespace instead." << std::endl;117 orxout(internal_warning) << "No file included with name '" << firstPart.substr(1, std::string::npos) << "' at this part of the level file, using parent namespace instead." << endl; 118 118 nodes = this->getNodeRelative(secondPart); 119 119 }
Note: See TracChangeset
for help on using the changeset viewer.