Renamed a bunch of identifiers to make sure there are no clashes with software this might be used in (fmt -> const_fmt)

This commit is contained in:
2022-02-13 17:56:09 +01:00
parent 3db91aebda
commit bb5f4d5272
5 changed files with 19 additions and 19 deletions

View File

@@ -5,7 +5,7 @@
using namespace const_fmt;
int main() {
constexpr auto s = "abcdef {:04}"_fmt(123);
constexpr auto s = "abcdef {:04}"_const_fmt(123);
// Convert the s (with a type of 'std::array<char, N>') into something
// writable to std::cout