mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 09:17:52 -06:00
Fix for compilation on clang: Forward declarations of templates.
This commit is contained in:
parent
cd95b52dcd
commit
69ef6cf806
1 changed files with 7 additions and 0 deletions
|
@ -17,6 +17,13 @@
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
|
namespace cereal {
|
||||||
|
class BinaryInputArchive;
|
||||||
|
class BinaryOutputArchive;
|
||||||
|
template <class T> void load_optional(BinaryInputArchive &ar, std::shared_ptr<const T> &ptr);
|
||||||
|
template <class T> void save_optional(BinaryOutputArchive &ar, const std::shared_ptr<const T> &ptr);
|
||||||
|
}
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
|
|
||||||
class Model;
|
class Model;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue