diff options
author | Linus Groh <mail@linusgroh.de> | 2022-10-17 00:06:11 +0200 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-12-03 23:52:23 +0000 |
commit | d26aabff0401690d6dd1332558b40f5cb64e4428 (patch) | |
tree | fd56d0ab5b672814a1a2fb7b8a92fefb01f24e6f /AK/String.h | |
parent | 8639d8bc212dcb45aff80405b4b0f6b1ef1087e7 (diff) | |
download | serenity-d26aabff0401690d6dd1332558b40f5cb64e4428.zip |
Everywhere: Run clang-format
Diffstat (limited to 'AK/String.h')
-rw-r--r-- | AK/String.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/AK/String.h b/AK/String.h index 8001728308..a304f0d1da 100644 --- a/AK/String.h +++ b/AK/String.h @@ -283,7 +283,8 @@ public: } template<typename T> - [[nodiscard]] static String number(T value) requires IsArithmetic<T> + [[nodiscard]] static String number(T value) + requires IsArithmetic<T> { return formatted("{}", value); } |