Skip to content

Commit

Permalink
Fix code style
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksandr Ivanov <[email protected]>
  • Loading branch information
alexander-e1off committed Nov 27, 2024
1 parent 08e4983 commit 27194b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ LessThanLowerBoundFn::LessThanLowerBoundFn(const Parameters::Range& range)
}

bool LessThanLowerBoundFn::operator()(const mqbs::JournalFileIterator* jit,
bool inverseOrder)
bool inverseOrder) const
{
// PRECONDITIONS
BSLS_ASSERT(jit);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,13 @@ class LessThanLowerBoundFn {

public:
// CREATORS

explicit LessThanLowerBoundFn(const Parameters::Range& range);

// ACCESSORS

bool operator()(const mqbs::JournalFileIterator* jit,
bool inverseOrder = false);
bool inverseOrder = false) const;
// Return true if value specified by `jit` is less than range lower bound
// when the specified `inverseOrder` is false, false otherwise.
// Return true if range lower bound is less than value specified by `jit`
Expand Down

0 comments on commit 27194b8

Please sign in to comment.