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;