aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/scheme/scheme_cast.h
diff options
context:
space:
mode:
authorbulatman <bulatman@yandex-team.com>2023-06-10 13:55:11 +0300
committerbulatman <bulatman@yandex-team.com>2023-06-10 13:55:11 +0300
commitd570836295decdb827b4f95d75ebf2d8d9232b9b (patch)
tree859f3511dc3166e935b9c3438f6beee050816001 /library/cpp/scheme/scheme_cast.h
parent91497eb27263e2feb35b53a90773e7207752a2ec (diff)
downloadydb-d570836295decdb827b4f95d75ebf2d8d9232b9b.tar.gz
Remove extra semicolon (library)
Diffstat (limited to 'library/cpp/scheme/scheme_cast.h')
-rw-r--r--library/cpp/scheme/scheme_cast.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/scheme/scheme_cast.h b/library/cpp/scheme/scheme_cast.h
index 00839e8017c..3a44a189fa9 100644
--- a/library/cpp/scheme/scheme_cast.h
+++ b/library/cpp/scheme/scheme_cast.h
@@ -18,14 +18,14 @@ namespace NJsonConverters {
const TString ToJson(const bool sort = false) const {
return ToTValue().ToJson(sort);
- };
+ }
void FromJson(const TStringBuf& json, const bool validate = false) {
NSc::TValue v = NSc::TValue::FromJson(json);
FromTValue(v, validate);
}
- virtual ~IJsonSerializable(){};
+ virtual ~IJsonSerializable() = default;
};
//////////////////////////////////////////////////////////////////////
// fwd declarations