Fix compilation
This commit is contained in:
parent
853e01c192
commit
ffc58e9806
|
|
@ -21,7 +21,9 @@ namespace Nz
|
|||
{
|
||||
public:
|
||||
GuillotineImageAtlas();
|
||||
virtual ~GuillotineImageAtlas();
|
||||
GuillotineImageAtlas(const GuillotineImageAtlas&) = delete;
|
||||
GuillotineImageAtlas(GuillotineImageAtlas&&) noexcept = default;
|
||||
~GuillotineImageAtlas() = default;
|
||||
|
||||
void Clear() override;
|
||||
|
||||
|
|
@ -38,6 +40,9 @@ namespace Nz
|
|||
void SetRectChoiceHeuristic(GuillotineBinPack::FreeRectChoiceHeuristic heuristic);
|
||||
void SetRectSplitHeuristic(GuillotineBinPack::GuillotineSplitHeuristic heuristic);
|
||||
|
||||
GuillotineImageAtlas& operator=(const GuillotineImageAtlas&) = delete;
|
||||
GuillotineImageAtlas& operator=(GuillotineImageAtlas&&) noexcept = default;
|
||||
|
||||
protected:
|
||||
struct Layer;
|
||||
|
||||
|
|
|
|||
|
|
@ -19,8 +19,6 @@ namespace Nz
|
|||
{
|
||||
}
|
||||
|
||||
GuillotineImageAtlas::~GuillotineImageAtlas() = default;
|
||||
|
||||
void GuillotineImageAtlas::Clear()
|
||||
{
|
||||
m_layers.clear();
|
||||
|
|
|
|||
Loading…
Reference in New Issue