I am getting an error when trying to compile my code in g++ using the current signature:

cannot declare member function static void Foo::Bar(std::ostream&, const Foo::Node*) to have static linkage

My question is twofold:

  1. Why does it not Compile this way?
  2. What is the correct signature, and why?

Signatures have always been the death of me when using C++

Edit: Here is the class header file, as well:

class Foo {


public:
    Foo();

    ~Foo();

    bool insert(const Foo2 &v);

    Foo * find(const Foo2 &v);

    const Foo * find(const Foo2 &v) const;

    void output(ostream &s) const;

private:
    //Foo(const Foo &v);
    //Foo& operator =(const Foo &v);
    //Not implemented; unneeded


    struct Node {
        Foo2 info;
        Node *left;
        Node *right;
    };

    Node * root;

    static bool insert(const Foo2 &v, Node *&p);


    static void output(ostream &s, const Node *p);


    static void deleteAll(Node *p);
link|improve this question

You should include all the relevant lines from the g++ error. – keith.layne Nov 15 '11 at 0:49
The error message you list can't be produced by the code you posted. There is no Foo::Bar anywhere in your program fragment. Please post a complete, minimal program that demonstrates the error you are having. A complete program is one that we can compile exactly as-is and receive the same error message as you. A minimal program is one with every line unrelated to your error removed. The code fragment you posted is neither complete nor minimal. See sscce.org for more info. – Robᵩ Nov 15 '11 at 1:08
feedback

1 Answer

up vote 7 down vote accepted

I'm guessing you've done something like:

class Foo
{
    static void Bar();
};

...

static void Foo::Bar()
{
    ...
}

This is incorrect. You don't need the second "static".

link|improve this answer
I included the header file; I didn't provide enough information the first time I don't think. – Joshua Nov 15 '11 at 0:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.