mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-11 14:59:01 +08:00
Fix compilation on OSX because clang is specific about default constructors not being specified in exprtk
This commit is contained in:
parent
a553d6de3d
commit
db2369526b
@ -748,10 +748,10 @@ namespace exprtk
|
||||
|
||||
namespace details
|
||||
{
|
||||
struct unknown_type_tag {};
|
||||
struct real_type_tag {};
|
||||
struct complex_type_tag {};
|
||||
struct int_type_tag {};
|
||||
struct unknown_type_tag {unknown_type_tag(){} };
|
||||
struct real_type_tag {real_type_tag(){} };
|
||||
struct complex_type_tag {complex_type_tag(){} };
|
||||
struct int_type_tag {int_type_tag(){}};
|
||||
|
||||
template <typename T>
|
||||
struct number_type { typedef unknown_type_tag type; };
|
||||
|
Loading…
x
Reference in New Issue
Block a user