Unverified Commit 71c2055c authored by Scott Cyphers's avatar Scott Cyphers Committed by GitHub

Reverse example call order (#771)

parent 2dac2cb3
...@@ -58,7 +58,7 @@ int main() ...@@ -58,7 +58,7 @@ int main()
t_c->write(&v_c, 0, sizeof(v_c)); t_c->write(&v_c, 0, sizeof(v_c));
// Invoke the function // Invoke the function
cf->call({t_a, t_b, t_c}, {t_result}); cf->call({t_result}, {t_a, t_b, t_c});
// Get the result // Get the result
float r[2][3]; float r[2][3];
......
Markdown is supported
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