Skip to content

Commit

Permalink
remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
apolyakov committed Feb 5, 2025
1 parent 9d63b68 commit 1543212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime-light/stdlib/component/component-api.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ struct C$ComponentQuery final : public refcountable_php_classes<C$ComponentQuery
uint64_t stream_d{k2::INVALID_PLATFORM_DESCRIPTOR};

explicit constexpr C$ComponentQuery(uint64_t stream_d_) noexcept : stream_d(stream_d_) {}
constexpr C$ComponentQuery(C$ComponentQuery&& other) noexcept : stream_d(std::exchange(other.stream_d, k2::INVALID_PLATFORM_DESCRIPTOR)) {};
constexpr C$ComponentQuery(C$ComponentQuery&& other) noexcept : stream_d(std::exchange(other.stream_d, k2::INVALID_PLATFORM_DESCRIPTOR)) {}

C$ComponentQuery(const C$ComponentQuery&) = delete;
C$ComponentQuery& operator=(const C$ComponentQuery&) = delete;
Expand Down

0 comments on commit 1543212

Please sign in to comment.