]> AND Public Git Repository - simgrid.git/blobdiff - src/kernel/actor/SimcallObserver.hpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
And now cleanup the App-side of cruft that was needed for Checker to read actor infor...
[simgrid.git] / src / kernel / actor / SimcallObserver.hpp
index 56adb669205c345f7c400641b31573e5f1ae8a59..6eabf88b570e5bac031fb4ea42dbc8299f756910 100644 (file)
@@ -12,9 +12,7 @@
 
 #include <string>
 
-namespace simgrid {
-namespace kernel {
-namespace actor {
+namespace simgrid::kernel::actor {
 
 class SimcallObserver {
   ActorImpl* const issuer_;
@@ -69,7 +67,6 @@ protected:
   ~ResultingSimcall() = default;
 
 public:
-  ResultingSimcall() = default;
   ResultingSimcall(ActorImpl* actor, T default_result) : SimcallObserver(actor), result_(default_result) {}
   void set_result(T res) { result_ = res; }
   T get_result() const { return result_; }
@@ -109,8 +106,6 @@ public:
   double get_timeout() const { return timeout_; }
 };
 
-} // namespace actor
-} // namespace kernel
-} // namespace simgrid
+} // namespace simgrid::kernel::actor
 
 #endif