diff options
| -rw-r--r-- | ue3/mycpu/cprogram.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ue3/mycpu/cprogram.cpp b/ue3/mycpu/cprogram.cpp index 1a450f5..3fcf734 100644 --- a/ue3/mycpu/cprogram.cpp +++ b/ue3/mycpu/cprogram.cpp | |||
| @@ -102,7 +102,7 @@ void CProgram::compile(std::istream& in) | |||
| 102 | string params = (pos == string::npos) ? "" : line.substr(pos + 1); | 102 | string params = (pos == string::npos) ? "" : line.substr(pos + 1); |
| 103 | boost::trim(params); | 103 | boost::trim(params); |
| 104 | list<string> instrparams; | 104 | list<string> instrparams; |
| 105 | boost::split(instrparams, params, boost::is_any_of(", "), boost::token_compress_on); | 105 | boost::split(instrparams, params, boost::is_any_of(", \t"), boost::token_compress_on); |
| 106 | 106 | ||
| 107 | /* let instruction parse the parameters. catch+throw exception */ | 107 | /* let instruction parse the parameters. catch+throw exception */ |
| 108 | try | 108 | try |
