Skip to content

Commit

Permalink
Add missing ; after C++ class definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
ojwb committed Mar 20, 2015
1 parent c8a7322 commit af113fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Doc/Manual/Python.html
Expand Up @@ -3404,7 +3404,7 @@ <H3><a name="Python_nn42"></a>36.6.2 Adding additional Python code</H3>
class Foo {
public:
int bar(int x);
}
};
</pre>
</div>

Expand Down Expand Up @@ -3441,7 +3441,7 @@ <H3><a name="Python_nn42"></a>36.6.2 Adding additional Python code</H3>
class Foo {
public:
int bar(int x);
}
};
</pre>
</div>

Expand Down Expand Up @@ -3470,7 +3470,7 @@ <H3><a name="Python_nn42"></a>36.6.2 Adding additional Python code</H3>
class Foo {
public:
int bar(int x);
}
};
</pre>
</div>

Expand Down Expand Up @@ -3500,7 +3500,7 @@ <H3><a name="Python_nn42"></a>36.6.2 Adding additional Python code</H3>
public:
int bar(int x);
int bar();
}
};
</pre>
</div>

Expand Down

0 comments on commit af113fa

Please sign in to comment.