osh.h

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

commit 5234e120f1572ced4d5097f67db119419b07696e
parent 260aa90a4d2e637ad8f9155a2b484e6fb6438291
Author: Oshgnacknak <osh@oshgnacknak.de>
Date:   Mon,  3 Jan 2022 14:05:00 +0100

Change format string

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

diff --git a/osh.h b/osh.h @@ -18,7 +18,7 @@ namespace osh { template<typename T> concept Formatter = requires(T t) { - t.format("%s: %d\n", "Namespace", 123); + t.format("If it supports %s, it suppots %p!!1%d!elf", "printf", "printp", 1); }; class FileFormatter {