Skip to content

Commit

Permalink
Fix NonMovable class (AntaresSimulatorTeam#2555)
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes authored Jan 6, 2025
1 parent 361abda commit 4a30c44
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ext/yuni/src/yuni/core/nonmovable.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,12 @@ class YUNI_DECL NonMovable
{
protected:
//! Default constructor
NonCopyable()
NonMovable()
{
}

//! Protected non-virtual destructor
~NonCopyable()
~NonMovable()
{
}
};
Expand Down

0 comments on commit 4a30c44

Please sign in to comment.