From 9097e77ef684f7f15d60e33fe152491b8d3a57e0 Mon Sep 17 00:00:00 2001 From: msieben <4319079+msieben@users.noreply.github.com> Date: Tue, 19 Dec 2023 09:21:59 +0100 Subject: [PATCH] [Core] Amend JSON/IsExtractOnSingleSet (#1469) - Non-void method. - Adjust naming. Co-authored-by: sebaszm <45654185+sebaszm@users.noreply.github.com> --- Source/core/JSON.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/core/JSON.h b/Source/core/JSON.h index 5264edb7d..f18ecbf84 100644 --- a/Source/core/JSON.h +++ b/Source/core/JSON.h @@ -3113,7 +3113,7 @@ namespace Core { } } - void IsExtractOnSigleSet() const + bool IsExtractOnSingleSet() const { return ((_state & (modus::EXTRACT)) != 0); }