minor comment fix

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9605 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2006-12-05 22:07:28 +00:00
commit 1994a224e2

View file

@ -1538,7 +1538,7 @@ int Language::staticmembervariableHandler(Node *n) {
class Foo {
public:
static const int x = 3;
static const int x = 3;
};
Some discussion of this in section 9.4 of the C++ draft standard.
@ -1548,7 +1548,7 @@ int Language::staticmembervariableHandler(Node *n) {
class Foo {
public:
%extend {
static const int x = 3;
static const int x = 3;
}
};