Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in error message
[simgrid.git] / include / simgrid / s4u / ConditionVariable.hpp
index c40482f..5af3446 100644 (file)
@@ -104,7 +104,10 @@ public:
   void notify_one();
   void notify_all();
 
-  XBT_ATTRIB_DEPRECATED_v319("Use notify_one(): v3.19 will remove notify() completely.") void notify() { notify_one(); }
+  XBT_ATTRIB_DEPRECATED_v319("Use notify_one(): v3.19 will change this warning into an error.") void notify()
+  {
+    notify_one();
+  }
 };
 
 using ConditionVariablePtr = ConditionVariable::Ptr;