lua-users home
lua-l archive

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


I think I found a bug when using a namespace.

The code that is generated from a package file that contain:

namespace abc
{
    class CoolClass
    {
        void Foo( const char* f );
    };
}

is producing code like this:

abc::abc::Foo(...);

NOTICE: The double namespace scoping.

--
Regards,
Ryan
RJP Computing