Changeset 9357 in orxonox.OLD for branches/proxy/src/lib/parser/ini_parser
- Timestamp:
- Jul 20, 2006, 2:33:37 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/parser/ini_parser/ini_parser.cc
r7729 r9357 35 35 #endif 36 36 37 using namespace std; 37 38 38 39 39 /** … … 142 142 if ( (*lineBegin == '#' || *lineBegin == ';')) 143 143 { 144 st ring newCommenLine = lineBegin;144 std::string newCommenLine = lineBegin; 145 145 this->commentList.push_back(newCommenLine); 146 146 continue; … … 242 242 } 243 243 fclose(stream); 244 return true; 244 245 } 245 246
Note: See TracChangeset
for help on using the changeset viewer.