Changeset 2641 for code/branches/buildsystem2/src/cpptcl/cpptcl.cc
- Timestamp:
- Feb 8, 2009, 11:52:37 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/buildsystem2/src/cpptcl/cpptcl.cc
r2601 r2641 321 321 post_process_policies(interp, pol, objv, false); 322 322 } 323 catch ( exception const &e)323 catch (std::exception const &e) 324 324 { 325 325 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); … … 364 364 post_process_policies(interp, pol, objv, true); 365 365 } 366 catch ( exception const &e)366 catch (std::exception const &e) 367 367 { 368 368 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE); … … 431 431 object_handler, static_cast<ClientData>(chb), 0); 432 432 } 433 catch ( exception const &e)433 catch (std::exception const &e) 434 434 { 435 435 Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE);
Note: See TracChangeset
for help on using the changeset viewer.