Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove a lot of typedefs and typedef usage
[simgrid.git] / teshsuite / mc / dwarf_expression / dwarf_expression.cpp
index fc7ab69..afd40aa 100644 (file)
@@ -15,7 +15,7 @@
 #include "../src/mc/mc_private.h"
 #include "../src/mc/mc_object_info.h"
 
-static mc_process_t process;
+static simgrid::mc::Process* process;
 
 static
 uintptr_t eval_binary_operation(mc_expression_state_t state, int op, uintptr_t a, uintptr_t b) {
@@ -119,7 +119,7 @@ int main(int argc, char** argv) {
 
   s_mc_expression_state_t state;
   memset(&state, 0, sizeof(s_mc_expression_state_t));
-  state.address_space = (mc_address_space_t) process;
+  state.address_space = (simgrid::mc::AddressSpace*) process;
 
   basic_test(&state);