Я ищу способ удаления пробелов из константного символа * во время компиляции. (Создание новой строки) Например:
Код: Выделить всё
constexpr static const char * initial = "hello world";
constexpr static const char * after = strip_whitespace(initial); // "helloworld"
Подробнее здесь: https://stackoverflow.com/questions/778 ... nipulation