diff options
author | swarmer <[email protected]> | 2023-12-13 23:12:04 +0300 |
---|---|---|
committer | swarmer <[email protected]> | 2023-12-14 00:34:50 +0300 |
commit | fba7d3f86a840240afd37301f6ee97a316fe1576 (patch) | |
tree | 77c9c20e1e1bfea73033b41753c3999f9a316a96 | |
parent | d2c7b8c29f41cae3585e77f5356af32abe42f487 (diff) |
fix codestyle: remove semicolon
-rw-r--r-- | util/string/cast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/string/cast.h b/util/string/cast.h index 1f28d176fc2..564baa93d5c 100644 --- a/util/string/cast.h +++ b/util/string/cast.h @@ -118,7 +118,7 @@ inline const TUtf16String& ToWtring(const TUtf16String& w Y_LIFETIME_BOUND) noex inline TUtf16String&& ToWtring(TUtf16String&& w Y_LIFETIME_BOUND) noexcept { return std::move(w); -}; +} struct TFromStringException: public TBadCastException { }; |