Changeset 3300 for code/trunk/src/core/TclThreadManager.cc
- Timestamp:
- Jul 17, 2009, 11:53:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/TclThreadManager.cc
r3280 r3300 577 577 this->debug("TclThread_query: " + command); 578 578 try 579 { output = (std::string)target->interpreter_->eval(command); }579 { output = static_cast<std::string>(target->interpreter_->eval(command)); } 580 580 catch (Tcl::tcl_error const &e) 581 { this->error("Tcl error: " + (std::string)e.what()); }581 { this->error("Tcl error: " + static_cast<std::string>(e.what())); } 582 582 catch (std::exception const &e) 583 { this->error("Error while executing Tcl: " + (std::string)e.what()); }583 { this->error("Error while executing Tcl: " + static_cast<std::string>(e.what())); } 584 584 } 585 585 else
Note: See TracChangeset
for help on using the changeset viewer.