summaryrefslogtreecommitdiff
path: root/src/mongo/crypto
diff options
context:
space:
mode:
authorMatt Kneiser <matt.kneiser@mongodb.com>2023-04-04 14:53:06 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-04-04 15:51:37 +0000
commit83b7d74f7d9e5eae7caf5c958f25fe65a170b5bd (patch)
tree038809d75003e92b4036da69002f48d17e263ebd /src/mongo/crypto
parentcbeb2d91d491c4fdb3f87ba794ee0e9bfe663725 (diff)
downloadmongo-83b7d74f7d9e5eae7caf5c958f25fe65a170b5bd.tar.gz
SERVER-75617 Make fallthroughs explicit using the new attribute
Diffstat (limited to 'src/mongo/crypto')
-rw-r--r--src/mongo/crypto/fle_crypto.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/crypto/fle_crypto.cpp b/src/mongo/crypto/fle_crypto.cpp
index b3407ae36c3..f88f34a3779 100644
--- a/src/mongo/crypto/fle_crypto.cpp
+++ b/src/mongo/crypto/fle_crypto.cpp
@@ -2195,7 +2195,7 @@ BSONObj runStateMachineForDecryption(mongocrypt_ctx_t* ctx, FLEKeyVault* keyVaul
}
case MONGOCRYPT_CTX_NEED_KMS_CREDENTIALS:
// We don't handle KMS credentials
- // fallthrough
+ [[fallthrough]];
default:
uasserted(7132216, "unsupported state machine state");
break;