Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
put MsgActorExt in a namespace
[simgrid.git] / src / msg / msg_private.h
index 3209072..00c6682 100644 (file)
@@ -73,12 +73,14 @@ typedef struct simdata_file {
 
 /******************************* Process *************************************/
 
+namespace simgrid {
 class MsgActorExt {
 public:
   explicit MsgActorExt(void* d) : data(d) {}
   msg_error_t errno_ = MSG_OK;  /* the last value returned by a MSG_function */
   void* data = nullptr; /* user data */
 };
+}
 
 typedef struct process_arg {
   const char *name;