[Bug c++/26605] using + function templates troubles
pcarlini at suse dot de
gcc-bugzilla@gcc.gnu.org
Wed Mar 8 16:20:00 GMT 2006
------- Comment #9 from pcarlini at suse dot de 2006-03-08 16:20 -------
The below also works already (can make for an useful if ugly workaround, in
some cases, e.g., c++/21682):
namespace one
{
template<typename T>
void
fun(T);
}
namespace two
{
template<typename T>
void
fun(T);
}
using one::fun;
using two::fun;
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26605
More information about the Gcc-bugs
mailing list