specialize a template function out of its namespace

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi all.

I have the following problem:

namespace test
{
    class A
    {
        template <typename T>
        void foo(T &);
    };
}

//specialize the function out of namespace test
template <> test::A::foo<int>(int & a)
{
    //do something with a
}

if on the contrary I put it this way:

namespace test
{
    class A
    {
        template <typename T>
        void foo(T &);
    };

    //specialize the function inside namespace test
    template <> A::foo<int> (int & a)
    {
        //do something with a
    }
}

it works ok.

How can I use the first form without errors?

Thanks in advance.

[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux