Changeset 8350 in orxonox.OLD for trunk/src/lib/shell
- Timestamp:
- Jun 13, 2006, 10:01:55 PM (19 years ago)
- Location:
- trunk/src/lib/shell
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_buffer.cc
r8145 r8350 99 99 std::string inputBuffer = this->keepBuffer + line; 100 100 101 int lineBegin = 0;102 int lineEnd = 0;101 unsigned int lineBegin = 0; 102 unsigned int lineEnd = 0; 103 103 // adding all the new Lines 104 104 while (lineEnd < inputBuffer.size()) -
trunk/src/lib/shell/shell_command.cc
r7771 r8350 149 149 const ShellCommand* const ShellCommand::getCommandFromInput(const std::string& inputLine, unsigned int& paramBegin, std::vector<BaseObject*>* boList) 150 150 { 151 ShellCommand::getCommandFromInput(SubString(inputLine, SubString::WhiteSpaces), paramBegin);151 return ShellCommand::getCommandFromInput(SubString(inputLine, SubString::WhiteSpaces), paramBegin); 152 152 } 153 153 … … 194 194 if (cmdClass != NULL) 195 195 { 196 const ShellCommand* retCmd ;196 const ShellCommand* retCmd = NULL; 197 197 // Function/Command right after Class 198 198 if (strings.size() >= 1)
Note: See TracChangeset
for help on using the changeset viewer.