Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
YoshiakiNishimura committed Nov 13, 2024
1 parent d1d5369 commit 726575d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jogasaki/executor/process/impl/scan_range.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace jogasaki::executor::process::impl {

scan_range::scan_range(bound begin, bound end, bool is_empty) noexcept
: begin_(std::move(begin)), end_(std::move(end)), is_empty_(is_empty) {}
scan_range::scan_range() noexcept : begin_(), end_(), is_empty_(true) {}
scan_range::scan_range() noexcept: is_empty_(true) {}
[[nodiscard]] bound const& scan_range::begin() const noexcept { return begin_; }
[[nodiscard]] bound const& scan_range::end() const noexcept { return end_; }
[[nodiscard]] bool scan_range::is_empty() const noexcept { return is_empty_; }
Expand Down

0 comments on commit 726575d

Please sign in to comment.