コンパイラ エラー C2131
式は定数に評価されませんでした
const
または constexpr
として宣言された式は、コンパイル時に定数に評価されませんでした。 コンパイラは、使用されている時点で式の値を判別できる必要があります。
例
この例では、エラー C2131 の原因とその修正方法を示します。
// c2131.cpp
// compile by using: cl /EHsc /W4 /c c2131.cpp
struct test
{
static const int array_size; // To fix, init array_size here.
int size_array[array_size]; // C2131
};
const int test::array_size = 42;
c2131.cpp
c2131.cpp(7): error C2131: expression did not evaluate to a constant
c2131.cpp(7): note: failure was caused by non-constant arguments or reference to a non-constant symbol
c2131.cpp(7): note: see usage of 'array_size'