Skip to content

Commit

Permalink
Fix NonMovable class
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Jan 6, 2025
1 parent 832e89b commit e816eca
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 e816eca

Please sign in to comment.