gcc で explicit specialization in non-namespace scope エラー
クラス内でテンプレート特殊化を定義すると発生します(C++11 想定)
class MyClass {
template <class T>
static bool SetValue(const std::vector<T>& v, BaseHandler& handler) {
if (!handler.StartArray()) {
return false;
}
for (size_t i = 0; i < v.size(); i++) {
if (!SetValue(v[i], handler)) {
return false;
}
}
return handler.EndArray(v.size());
}
// Error!
template<>
bool SetValue(const std::vector<float>& v, BaseHandler &handler) {
...
}
}
clang, MSVC では発生しないですが, 仕様としては gcc のほうが正しいようです.
解決方法
クラスの外(e.g. .cpp)で特殊化のコードを記述すれば解決します.
Author And Source
この問題について(gcc で explicit specialization in non-namespace scope エラー), 我々は、より多くの情報をここで見つけました https://qiita.com/syoyo/items/a3c03cffce071634f06f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .