Код: Выделить всё
#ifndef FOO_H
#define FOO_H
#include
#include
class Foo
{
public:
Foo();
std::array m_array;
private:
constexpr static size_t s_array_size;
}
#endif
Подробнее здесь: https://stackoverflow.com/questions/796 ... iable-in-c
Код: Выделить всё
#ifndef FOO_H
#define FOO_H
#include
#include
class Foo
{
public:
Foo();
std::array m_array;
private:
constexpr static size_t s_array_size;
}
#endif