From: Jérémie Astor Date: Sat, 9 May 2020 20:25:41 +0000 (+0200) Subject: Revert ":wrench: op already imported" X-Git-Tag: nightly~1605 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=05ff02015e86c1369a44d8531134e189ec8cf996;p=gwion.git Revert ":wrench: op already imported" This reverts commit 9628cc6a543127663ff3b1e92070faafce739338. --- diff --git a/tests/import/op_already_imported.c b/tests/import/op_already_imported.c index 0454a3f1..1b3eec5e 100644 --- a/tests/import/op_already_imported.c +++ b/tests/import/op_already_imported.c @@ -13,8 +13,6 @@ GWION_IMPORT(op_already_imported) { - GWI_BB(gwi_oper_ini(gwi, "int", "int", "int")) - GWI_BB(gwi_oper_end(gwi, "=>", NULL)) GWI_BB(gwi_oper_ini(gwi, "int", "int", "int")) GWI_BB(gwi_oper_end(gwi, "=>", NULL)) return GW_OK; diff --git a/tests/struct/struct_template.gw b/tests/struct/struct_template.gw deleted file mode 100644 index 49a9fcd8..00000000 --- a/tests/struct/struct_template.gw +++ /dev/null @@ -1,10 +0,0 @@ -struct <~A~> S{ - A a0; - A a1; -} - -<~int~>S si; -<~float~>S sf; - -<<< si.a0 >>>; -<<< sf.a0 >>>;