I’m guessing you’ve done something like:
class Foo
{
static void Bar();
};
...
static void Foo::Bar()
{
...
}
The “static void Foo::Bar
” is incorrect. You don’t need the second “static
“.
I’m guessing you’ve done something like:
class Foo
{
static void Bar();
};
...
static void Foo::Bar()
{
...
}
The “static void Foo::Bar
” is incorrect. You don’t need the second “static
“.