blob: 79d56aa40e34a78f4761e4ef502bdddfc182c581 [file] [log] [blame]
/* This interface file tests whether whitespace in angle brackets
effects the SWIG types. SF Bug #221917, reported by
burchanb@cs.tamu.edu. */
%{
#include <vector>
%}
%typemap(in) vector<int> "";
%inline %{
void foo(vector<int > v) {}
%}