Director testcase cosmetic fixes

This commit is contained in:
William S Fulton 2017-05-22 19:15:39 +01:00
commit 98e67539dd
3 changed files with 34 additions and 5 deletions

View file

@ -10,14 +10,14 @@
%inline %{
struct C {
C() : m(1) {};
C(int n) : m(n) {};
int get_m() { return m; };
C() : m(1) {}
C(int n) : m(n) {}
int get_m() { return m; }
int m;
};
struct Base {
Base() {};
Base() {}
virtual boost::shared_ptr<C> ret_c_shared_ptr() = 0;
virtual C ret_c_by_value() = 0;
virtual int take_c_by_value(C c) = 0;