PreZero padding now being handled by preprocessing

This commit is contained in:
2022-02-13 20:47:41 +01:00
parent 4128ede5db
commit f47a23ffef
2 changed files with 8 additions and 17 deletions

View File

@@ -18,17 +18,6 @@ constexpr inline std::size_t const_pow(std::size_t base, std::size_t pow) {
}
template <std::size_t t_n>
consteval inline std::array<char, t_n> get_init_array(char val) {
std::array<char, t_n> result;
for (auto& c : result)
c = val;
return result;
}
template <auto ast>
consteval inline std::size_t count_ast_format_nodes() {
std::size_t result = 0;