Silence tidy

This commit is contained in:
Raúl Marín 2024-06-24 11:35:29 +02:00
parent df8341c447
commit 636f2506f0

View File

@ -59,8 +59,8 @@ namespace jeaiii
struct pair
{
char dd[2];
constexpr pair(char c) : dd{c, '\0'} { }
constexpr pair(int n) : dd{"0123456789"[n / 10], "0123456789"[n % 10]} { }
constexpr pair(char c) : dd{c, '\0'} { } /// NOLINT(google-explicit-constructor)
constexpr pair(int n) : dd{"0123456789"[n / 10], "0123456789"[n % 10]} { } /// NOLINT(google-explicit-constructor)
};
constexpr struct