Почему эта функция-член constexpr
static
, идентифицированная комментарием //! Nah
, не отображается как constexpr
при вызове?
struct Item_id
{
enum Enum
{
size, position, attributes, window_rect, max_window_size, _
};
static constexpr int n_items_ = _; // OK
constexpr auto member_n_items() const -> int { return _; } // OK
static constexpr auto static_n_items() -> int { return _; } // OK
static constexpr int so_far = n_items_; // OK
#ifndef OUT_OF_CLASS
static constexpr int bah = static_n_items(); //! Nah.
#endif
};
constexpr auto n_ids() -> int { return Item_id().member_n_items(); } // OK
auto main() -> int
{
#ifdef OUT_OF_CLASS
static constexpr int bah = Item_id::static_n_items(); // OK
#endif
}
Отчеты MinGW g++ 5.1
constexpr.cpp:12:46: error: 'static constexpr int Item_id::static_n_items()' called in a constant expression static constexpr int bah = static_n_items(); //! Nah.
Отчеты Visual С++ 2015
constexpr.cpp(12): error C2131: expression did not evaluate to a constant constexpr.cpp(12): note: failure was caused by call of undefined function or one not declared 'constexpr' constexpr.cpp(12): note: see usage of 'Item_id::static_n_items'
Мой текстовый редактор настаивает на том, что имя в вызове совпадает с именем в определении функции.
Кажется, что-то связано с неполным классом, потому что с помощью OUT_OF_CLASS
он компилирует красиво.
Но тогда почему работают данные n_items_
и почему такое правило (не имеет смысла для меня)?