osh.h

My personal stdc++ replacement
git clone git://git.oshgnacknak.de/osh.h.git
Log | Files | Refs

commit edc428afc648095639073bfef10a75332503e432
parent af7e3da686d55eca2657de16e3a82cc39b2bcab5
Author: Oshgnacknak <osh@oshgnacknak.de>
Date:   Mon,  3 Jan 2022 14:30:14 +0100

Fix format string

Diffstat:
Mosh.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/osh.h b/osh.h @@ -177,7 +177,7 @@ namespace osh { } void print1(Formatter auto& fmt, const unsigned long int& n) { - fmt.format("%lu", n); + fmt.format("%llu", n); } void print1(Formatter auto& fmt, const unsigned long long int& n) {