Static set member.

Young, Michael Michael.Young@paetec.com
Wed Aug 30 04:06:00 GMT 2006


This is a general C++ question, not specific to gcc - probably should be directed to another forum.

You tried defining your static member using:
"std::set<Thing *,ThingComp> ThingManager::thingSet();"

I believe you need to simply use the following (no parens for ctor call - they are implied):
"std::set<Thing *,ThingComp> ThingManager::thingSet;"






More information about the Gcc-help mailing list