実際のより大きなコードを表す次のコードがあります。
#include <iostream>
using namespace std;
template<size_t N> class A {
public:
static constexpr size_t getN() {return N;}
};
template<size_t N> class B {
public:
void print() { cout << "B created: " << N << '\n';}
};
template <class T> class C {
public:
void set(T* a) {
t_ptr = a;
}
void create() {
constexpr int m = t_ptr->getN();
B<m> b;
b.print();
}
private:
T* t_ptr;
};
int main() {
constexpr int n = 2;
A<n> a;
C<A<n> > c;
c.set(&a);
c.create();
}
GCC/G++ 4.8.3 でコンパイルするg++ -o main main.cpp -std=c++11
と、期待どおりの出力が得られます: B 作成: 2
ただし、GCC/G++ 4.9.1 ではコードがコンパイルされず、次のように出力されます。
main.cpp: In member function ‘void C<T>::create()’:
main.cpp:27:15: error: the value of ‘m’ is not usable in a constant expression
B<m> b;
^
main.cpp:26:27: note: ‘m’ used in its own initializer
constexpr int m = t_ptr->getN();
^
main.cpp:27:16: error: the value of ‘m’ is not usable in a constant expression
B<m> b;
^
main.cpp:26:27: note: ‘m’ used in its own initializer
constexpr int m = t_ptr->getN();
^
main.cpp:27:19: error: invalid type in declaration before ‘;’ token
B<m> b;
^
main.cpp:28:15: error: request for member ‘print’ in ‘b’, which is of non-class type ‘int’
b.print();
^
これは、GCC 4.9 の既知のバグが原因です: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=59937およびこの古いスレッドhttps://gcc.gnu.org/ml/gcc-bugs /2013-11/msg00067.htmlの使用がextern
回避策として提案されています。ただし、この回避策を機能させることができません。
このコードを GCC 4.9 でコンパイルするのを手伝ってくれませんか? ありがとうございました!