diff options
| author | Olly Betts <olly@survex.com> | 2014-11-05 10:42:12 +1300 |
|---|---|---|
| committer | Olly Betts <olly@survex.com> | 2014-11-07 15:34:43 +1300 |
| commit | 37cd1474b563d413c3ae7df254d9d22b9c6086b8 (patch) | |
| tree | 8136ee16549a79f6571aa771d7de7644348df543 /Examples/php/proxy | |
| parent | e047d2e2bded6712a4583e4fe067f7574be56fac (diff) | |
| download | swig-37cd1474b563d413c3ae7df254d9d22b9c6086b8.tar.gz | |
Remove bogus ; after } in examples
Diffstat (limited to 'Examples/php/proxy')
| -rw-r--r-- | Examples/php/proxy/example.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Examples/php/proxy/example.h b/Examples/php/proxy/example.h index 361dff898..0683f07f3 100644 --- a/Examples/php/proxy/example.h +++ b/Examples/php/proxy/example.h @@ -9,7 +9,7 @@ public: } virtual ~Shape() { nshapes--; - }; + } double x, y; void move(double dx, double dy); virtual double area(void) = 0; @@ -22,8 +22,8 @@ class Circle : public Shape { private: double radius; public: - Circle(double r) : radius(r) { }; - ~Circle() { }; + Circle(double r) : radius(r) { } + ~Circle() { } void set_radius( double r ); virtual double area(void); virtual double perimeter(void); @@ -33,7 +33,7 @@ class Square : public Shape { private: double width; public: - Square(double w) : width(w) { }; + Square(double w) : width(w) { } ~Square() { } virtual double area(void); virtual double perimeter(void); |
