当我尝试构建此代码时:
// foo.h
namespace foo {
namespace bar {
void put();
}
}
#include "foo.h"
namespace foo {
namespace {
template<typename T>
void put() { }
}
void bar::put() {
put<int>();
};
}
foo.cpp: In function ‘void foo::bar::put()’:
foo.cpp: error: expected primary-expression before ‘int’
foo.cpp: error: expected ‘;’ before ‘int’
显然,put<int>
是put
用来指代的bar::put
。我怎样才能让它引用put<T>
匿名命名空间中的?