From fbc6f9cf22b37c15f26a11258eff8d907a83ce6f Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 9 Oct 2022 10:17:16 +0200 Subject: [PATCH] Added missing semicolons. --- core/containers/hashfuncs.h | 4 ++-- core/string/ustring.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/containers/hashfuncs.h b/core/containers/hashfuncs.h index e66be7a7b..4751bc7c5 100644 --- a/core/containers/hashfuncs.h +++ b/core/containers/hashfuncs.h @@ -211,10 +211,10 @@ static _FORCE_INLINE_ uint32_t hash_murmur3_buffer(const void *key, int length, switch (length & 3) { case 3: k1 ^= tail[2] << 16; - FALLTHROUGH + FALLTHROUGH; case 2: k1 ^= tail[1] << 8; - FALLTHROUGH + FALLTHROUGH; case 1: k1 ^= tail[0]; k1 *= c1; diff --git a/core/string/ustring.cpp b/core/string/ustring.cpp index e78a59baa..309ac77cd 100644 --- a/core/string/ustring.cpp +++ b/core/string/ustring.cpp @@ -5460,7 +5460,7 @@ int64_t String::to_int(const CharType *p_str, int p_len, bool p_clamp) { } else { break; } - FALLTHROUGH + FALLTHROUGH; } case READING_INT: { if (is_digit(c)) {