Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[pvs] Don't let members uninitialized.
[simgrid.git] / src / kernel / context / ContextUnix.hpp
index d4d638a..48f1325 100644 (file)
@@ -28,7 +28,7 @@ public:
   UContext(std::function<void()>&& code, actor::ActorImpl* actor, SwappedContextFactory* factory);
 
 private:
-  ucontext_t uc_;         /* the ucontext that executes the code */
+  ucontext_t uc_{}; /* the ucontext that executes the code */
 
   void swap_into_for_real(SwappedContext* to) override;
 };