From 4c054bea8a11c61588ed17165e070a785d6aead3 Mon Sep 17 00:00:00 2001 From: Andreas Tsouchlos Date: Mon, 22 Nov 2021 12:53:52 +0100 Subject: [PATCH] Removed comment --- inc/format.h | 1 - 1 file changed, 1 deletion(-) diff --git a/inc/format.h b/inc/format.h index 0143613..38b09d8 100644 --- a/inc/format.h +++ b/inc/format.h @@ -43,7 +43,6 @@ constexpr std::array format_arg(arg_t arg) { unsigned offset = 0; - // TODO: Does making this branchless make it more efficient? if (arg < 0) { result[0] = '-'; arg = -arg;