Jean-Marc Lasgouttes <[EMAIL PROTECTED]> writes:

| >>>>> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:
| 
| Lars> I'd realy like to use namespaces.
| 
| Lars> What compilers have problems?
| 
| Basically gcc 2.8.x, egcs 1.0.x.

Yes, but is this namespaces in general or "only" std::?

small test prog:

#include <iostream>
#inlcude <string>

namespace Test {
        string foo() {
                return string("Bar");
        }
}

int main() {
        cout << Test::foo() << endl;
}

        Lgb

Reply via email to