Skip to content
Snippets Groups Projects
Commit 4afad9b6 authored by Christian Godenschwager's avatar Christian Godenschwager
Browse files

exprtk: added missing default constructors for clang <= 3.8

parent 27c3f900
Branches
Tags
No related merge requests found
......@@ -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; };
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment