diff options
author | William S Fulton <wsf@fultondesigns.co.uk> | 2014-10-29 22:57:55 +0000 |
---|---|---|
committer | William S Fulton <wsf@fultondesigns.co.uk> | 2014-10-29 23:11:09 +0000 |
commit | ede1e9544c1d999fb4504b076bee53356e3e53c8 (patch) | |
tree | 5863911b5728256a02a0508c761aba4bfc71935b /Examples/test-suite/r_overload_array.i | |
parent | fc1eaa521368cc410a5410103234cf6b00cfd77e (diff) | |
download | swig-ede1e9544c1d999fb4504b076bee53356e3e53c8.tar.gz |
Fix R Lib files and testcase failing due to new preprocessor checks
Fixes unknown preprocessor directive error introduced in #217
commit 255c929c5636f54c16261bd92b8eea2005d61b11
These were probably intended as script comments using # when C/C++
comments using // or /* */ should have been used.
Diffstat (limited to 'Examples/test-suite/r_overload_array.i')
-rw-r--r-- | Examples/test-suite/r_overload_array.i | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Examples/test-suite/r_overload_array.i b/Examples/test-suite/r_overload_array.i index 1474661c4..aa714dfdb 100644 --- a/Examples/test-suite/r_overload_array.i +++ b/Examples/test-suite/r_overload_array.i @@ -1,7 +1,8 @@ %module r_overload_array -%include "stl.i" -# this tests the situation in which there is a scalar function -# corresponding with a vector one + +%include <stl.i> +// this tests the situation in which there is a scalar function +// corresponding with a vector one %inline %{ class Foo { |