summaryrefslogtreecommitdiffstats
path: root/yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp
diff options
context:
space:
mode:
authorvvvv <[email protected]>2025-10-09 12:25:18 +0300
committervvvv <[email protected]>2025-10-09 12:57:17 +0300
commitcb77d014972b2cdb27d2e6d979fc3a2772b27ad4 (patch)
tree7f3bcd8ce71c6bd0f3ccc11e31b9f665475b819e /yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp
parentd58a8990d353b051c27e1069141117fdfde64358 (diff)
YQL-20086 minikql
commit_hash:e96f7390db5fcbe7e9f64f898141a263ad522daa
Diffstat (limited to 'yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp')
-rw-r--r--yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp b/yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp
index 04709e03aab..5c534431864 100644
--- a/yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp
+++ b/yql/essentials/minikql/jsonpath/rewrapper/dispatcher.cpp
@@ -32,7 +32,7 @@ void AddLibrary(ui32 id, TCompiler compiler, TDeserializer deserializer) {
GetModules()->at(id - 1) = TLib{id, compiler, deserializer};
}
-}
+} // namespace NRegistrator
namespace NDispatcher {
@@ -60,7 +60,7 @@ IRePtr Deserialize(const TStringBuf& serializedRegex) {
proto.SetHyperscan(str);
}
- ui64 id = (ui64)proto.GetDataCase();;
+ ui64 id = (ui64)proto.GetDataCase();
ThrowOnOutOfRange(id);
return NRegistrator::GetModules()->at(id - 1).Deserializer(proto);
}
@@ -70,6 +70,6 @@ IRePtr Compile(const TStringBuf& regex, unsigned int flags, ui32 id) {
return NRegistrator::GetModules()->at(id - 1).Compiler(regex, flags);
}
-}
+} // namespace NDispatcher
-}
+} // namespace NReWrapper