mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-11 16:57:53 -06:00
Fixed build on OsX
This commit is contained in:
parent
aae1250921
commit
ded6d44389
2 changed files with 3 additions and 2 deletions
|
@ -47,8 +47,10 @@ class Mouse3DController
|
|||
template <class T>
|
||||
struct InputQueue
|
||||
{
|
||||
size_t max_size{ 20 };
|
||||
size_t max_size;
|
||||
std::queue<T> queue;
|
||||
|
||||
InputQueue() : max_size(20) {}
|
||||
};
|
||||
|
||||
InputQueue<Vec3d> m_translation;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue