From d47970e2fdf4281bceb17950701f812bdbf548b5 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Sun, 6 Feb 2022 16:50:30 +1300 Subject: [PATCH] Fix problem with recent commit I failed to fully remove the conditional from one example in 1a03840172fef655e5e752c14195756185e4668d. --- Examples/octave/module_load/runme.m | 1 - 1 file changed, 1 deletion(-) diff --git a/Examples/octave/module_load/runme.m b/Examples/octave/module_load/runme.m index a5c820927..4e52c6ee0 100644 --- a/Examples/octave/module_load/runme.m +++ b/Examples/octave/module_load/runme.m @@ -19,7 +19,6 @@ clear all # load module in a function globally before base context clear all; function testme_1 - if compare_versions(version(), '4.4', '>=') && compare_versions(version(), '6', '<') % exist("swigexample") returns 1 (variable) in octave >= 4.4 < 6 but 3 (.oct file) in octave >= 6 assert(exist("swigexample")); swigexample;