MyClass
static PyHeapTypeObject SwigPyBuiltin__MyClass_type = {
- ...
- (hashfunc) myHashFunc, /* tp_hash */
- ...
+ ...
+ (hashfunc) myHashFunc, /* tp_hash */
+ ...
@@ -3087,7 +3087,7 @@ references. Here is an example:
class Foo {
public:
- ...
+ ...
};
class FooContainer {
public:
diff --git a/Doc/Manual/SWIG.html b/Doc/Manual/SWIG.html
index a43ff94b5..c05ed456c 100644
--- a/Doc/Manual/SWIG.html
+++ b/Doc/Manual/SWIG.html
@@ -389,7 +389,7 @@ For example
/* bar not wrapped unless foo has been defined and
the declaration of bar within foo has already been parsed */
int foo::bar(int) {
- ... whatever ...
+ ... whatever ...
}
diff --git a/Doc/Manual/SWIGPlus.html b/Doc/Manual/SWIGPlus.html
index da4f54603..d0a8f2c9c 100644
--- a/Doc/Manual/SWIGPlus.html
+++ b/Doc/Manual/SWIGPlus.html
@@ -706,7 +706,7 @@ class Foo {
protected:
Foo(); // Not wrapped.
public:
- ...
+ ...
};
@@ -1278,7 +1278,7 @@ equivalent to one generated for the following declaration
class Foo {
public:
- ...
+ ...
};
void blah(Foo *f);
@@ -4381,9 +4381,9 @@ class Error { };
class Foo {
public:
- ...
- void blah() throw(Error);
- ...
+ ...
+ void blah() throw(Error);
+ ...
};
@@ -4547,7 +4547,7 @@ class Foo_Impl {
public:
int x;
virtual void bar();
- ...
+ ...
};
// Smart-pointer wrapper
diff --git a/Doc/Manual/Varargs.html b/Doc/Manual/Varargs.html
index fb58ee39a..eba816382 100644
--- a/Doc/Manual/Varargs.html
+++ b/Doc/Manual/Varargs.html
@@ -423,8 +423,8 @@ Variable length arguments may be used in typemap specifications. For example:
%typemap(in) (...) {
- // Get variable length arguments (somehow)
- ...
+ // Get variable length arguments (somehow)
+ ...
}
%typemap(in) (const char *fmt, ...) {