を実装しようとしていますstd::is_enum
。これまでの私のコードは次のとおりです。
template<typename T>
struct is_enum {
static bool value;
};
template<typename T>
bool is_enum<T>::value = false;
template<enum E>
struct is_enum {
static bool value;
};
template<enum E>
bool is_enum<E>::value = true;
このコードはエラーを引き起こします。より正確に:
g++ -std=c++0x -Wall -o "enum2" "enum2.cpp" (in directory: /home/aristophanes/Desktop/C++)
Compilation failed.
enum2.cpp:11:15: error: use of enum ‘E’ without previous declaration
enum2.cpp:3:10: error: template parameter ‘class T’
enum2.cpp:12:8: error: redeclared here as ‘int E’
enum2.cpp:16:15: error: use of enum ‘E’ without previous declaration
enum2.cpp:17:14: error: ‘E’ was not declared in this scope
enum2.cpp:17:15: error: template argument 1 is invalid
enum2.cpp:17:18: error: template declaration of ‘bool value’
どこで間違いを犯したのか、誰か説明してもらえますか? それは私のものですか、それともコンパイラのせいですか? 前もって感謝します。
編集:完全に間違っている場合、どうすれば修正できますか?
注:私は使用していますg++ -o <file> <file>.cpp