Skip to content
Snippets Groups Projects
Verified Commit 3b3c4de5 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Use correct tuple constructor

parent 90fbb698
No related branches found
No related tags found
No related merge requests found
......@@ -239,7 +239,7 @@ for (target_name, all_vars) in all_variables_symbols
end
throw(VariableNotAvailable(typeof(bb), Variables.$variable_func))
catch e
if $use_get_func && e isa VariableNotAvailable && hasmethod($get_func, Tuple(typeof(bb)))
if $use_get_func && e isa VariableNotAvailable && hasmethod($get_func, tuple(typeof(bb)))
return Variables.$variable_func($get_func(bb))
end
rethrow()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment