mirror of
https://github.com/silverqx/TinyORM.git
synced 2025-12-30 15:29:36 -06:00
suppressed Clang Tidy warning
This commit is contained in:
@@ -38,7 +38,7 @@ namespace Private
|
||||
return "bool";
|
||||
|
||||
// Platform dependent long int type (LP64, LLP64, ILP32, and LP32)
|
||||
else if constexpr (std::is_same_v<T, long int>) {
|
||||
else if constexpr (std::is_same_v<T, long int>) { // NOLINT(google-runtime-int)
|
||||
|
||||
if constexpr (sizeof (T) == 4)
|
||||
return "int32 (long)";
|
||||
@@ -60,7 +60,7 @@ namespace Private
|
||||
"(long).");
|
||||
#endif
|
||||
}
|
||||
else if constexpr (std::is_same_v<T, unsigned long int>) {
|
||||
else if constexpr (std::is_same_v<T, unsigned long int>) { // NOLINT(google-runtime-int)
|
||||
|
||||
if constexpr (sizeof (T) == 4)
|
||||
return "uint32 (ulong)";
|
||||
|
||||
Reference in New Issue
Block a user