summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2014-11-05 10:17:22 +1300
committerOlly Betts <olly@survex.com>2014-11-07 15:34:43 +1300
commite047d2e2bded6712a4583e4fe067f7574be56fac (patch)
tree24f95d5a92569629338f2b9756a32fb051b6efd4 /CHANGES
parent0e5e043870681d6234414abfe3dc236cbd343055 (diff)
downloadswig-e047d2e2bded6712a4583e4fe067f7574be56fac.tar.gz
Remove bogus ; after } in documentation
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES18
1 files changed, 9 insertions, 9 deletions
diff --git a/CHANGES b/CHANGES
index b7b9856e2..33b2b5942 100644
--- a/CHANGES
+++ b/CHANGES
@@ -2898,8 +2898,8 @@ Version 2.0.0 (2 June 2010)
and in template parameter specializations:
struct S {};
- template <typename T> struct X { void a() {}; };
- template <> struct X<S> { void b() {}; };
+ template <typename T> struct X { void a() {} };
+ template <> struct X<S> { void b() {} };
%template(MyTConcrete) X< ::S >;
plus probably some other corner case usage of ::.
@@ -20234,13 +20234,13 @@ Version 1.3.6 (July 9, 2001)
class TestClass
{
public:
- TestClass() {};
- TestClass(int a) {};
- ~TestClass() {};
- unsigned long xyz(short k) {};
- unsigned long xyz(int n) {};
- static void static_func() {};
- static void static_func(int a) {};
+ TestClass() {}
+ TestClass(int a) {}
+ ~TestClass() {}
+ unsigned long xyz(short k) {}
+ unsigned long xyz(int n) {}
+ static void static_func() {}
+ static void static_func(int a) {}
};
void delete_TestClass(int a);