Fix PHP sync example

Mostly it was missing `%include <std_string.i>`
This commit is contained in:
Olly Betts 2021-04-19 11:26:32 +12:00
commit 09d06843d1
4 changed files with 19 additions and 19 deletions

View file

@ -4,11 +4,11 @@ extern std::string s;
extern int x;
class Sync {
public:
int x;
std::string s;
void printer();
void all_change();
public:
int x;
std::string s;
void printer();
void all_change();
Sync() : x(0) { }
Sync() : x(0) { }
};