Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
move some storage-related content out of routing into storage area
[simgrid.git] / src / instr / instr_paje_values.cpp
index 7936286..7d69e51 100644 (file)
@@ -4,6 +4,8 @@
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
+#include <xbt/ex.hpp>
+
 #include "src/instr/instr_private.h"
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY (instr_paje_values, instr, "Paje tracing event system (values)");
@@ -32,12 +34,10 @@ val_t PJ_value_new (const char *name, const char *color, type_t father)
 val_t PJ_value_get_or_new (const char *name, const char *color, type_t father)
 {
   val_t ret = 0;
-  xbt_ex_t e;
-  TRY {
+  try {
     ret = PJ_value_get(name, father);
   }
-  CATCH(e) {
-    xbt_ex_free(e);
+  catch(xbt_ex& e) {
     ret = PJ_value_new(name, color, father);
   }
   return ret;