Код: Выделить всё
class X {
public:
static inline int i = 8;
};
Код: Выделить всё
static int i = 8;
Подробнее здесь: https://stackoverflow.com/questions/468 ... -variables
Код: Выделить всё
class X {
public:
static inline int i = 8;
};
Код: Выделить всё
static int i = 8;