Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 8, 2009, 11:52:37 PM (15 years ago)
Author:
rgrieder
Message:
  • Update to boost 1.37: System library is now REQUIRED when finding boost even if you have less than boost 1.35. If this is problem, it's going to get quite ugly, but it's possible.
  • Fixed a problem in cpptcl.cc: Boost 1.36 introduced boost::exception which conflicted with std::exception (cpptcl makes use of 'using namespace'…)
  • Fixed two little bugs for tolua bind files and gcc warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/cpptcl/changes_orxonox.diff

    r2600 r2641  
    1 --- cpptcl.cc   Wed Jan 28 20:56:06 2009
    2 +++ cpptcl.cc   Sat Jan 24 12:52:54 2009
     1--- cpptcl.cc   So Feb  8 23:14:34 2009
     2+++ cpptcl.cc   So Feb  8 23:13:07 2009
     3@@ -320,7 +320,7 @@
     4 
     5           post_process_policies(interp, pol, objv, false);
     6      }
     7-     catch (exception const &e)
     8+     catch (std::exception const &e)
     9      {
     10           Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE);
     11           return TCL_ERROR;
     12@@ -363,7 +363,7 @@
     13 
     14           post_process_policies(interp, pol, objv, true);
     15      }
     16-     catch (exception const &e)
     17+     catch (std::exception const &e)
     18      {
     19           Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE);
     20           return TCL_ERROR;
     21@@ -430,7 +430,7 @@
     22                Tcl_GetString(Tcl_GetObjResult(interp)),
     23                object_handler, static_cast<ClientData>(chb), 0);
     24      }
     25-     catch (exception const &e)
     26+     catch (std::exception const &e)
     27      {
     28           Tcl_SetResult(interp, const_cast<char*>(e.what()), TCL_VOLATILE);
     29           return TCL_ERROR;
    330@@ -858,6 +858,18 @@
    431      owner_ = true;
Note: See TracChangeset for help on using the changeset viewer.