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

Merge branch '32-bug-in-exprtk-missing-default-constructor' into 'master'

Resolve "Bug in exprtk: missing default constructor"

Closes #32

See merge request !47
parents 27c3f900 4afad9b6
No related merge requests found
...@@ -748,10 +748,10 @@ namespace exprtk ...@@ -748,10 +748,10 @@ namespace exprtk
   
namespace details namespace details
{ {
struct unknown_type_tag {}; struct unknown_type_tag { unknown_type_tag() {} };
struct real_type_tag {}; struct real_type_tag { real_type_tag() {} };
struct complex_type_tag {}; struct complex_type_tag { complex_type_tag() {} };
struct int_type_tag {}; struct int_type_tag { int_type_tag() {} };
   
template <typename T> template <typename T>
struct number_type { typedef unknown_type_tag type; }; 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