Вставка кода из GitHub приводит к добавлению новой строки в OneNote.
//--------------------------------------------------
// constexpr and Constant Expressions
const int flies = 20; // OK
const int limit = flies+1; // OK
int staff_size = 27; // NOT a constant expression (no const)
const int sz = get_size(); // Not a constant expression, get_size() not known until runtime
Я хочу, чтобы это выглядело так:
//--------------------------------------------------
// constexpr and Constant Expressions
const int flies = 20; // OK
const int limit = flies+1; // OK
int staff_size = 27; // NOT a constant expression (no const)
const int sz = get_size(); // Not a constant expression, get_size() not known until runtime
Удаление новых строк вручную невозможно. Как я могу это сделать?