From 27194b862adbf0d93f7ff6e1120ac6e107316295 Mon Sep 17 00:00:00 2001 From: Aleksandr Ivanov Date: Tue, 19 Nov 2024 11:36:28 +0200 Subject: [PATCH] Fix code style Signed-off-by: Aleksandr Ivanov --- .../bmqstoragetool/m_bmqstoragetool_journalfileprocessor.cpp | 2 +- .../bmqstoragetool/m_bmqstoragetool_journalfileprocessor.h | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.cpp b/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.cpp index 823284d59..edd55f390 100644 --- a/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.cpp +++ b/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.cpp @@ -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); diff --git a/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.h b/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.h index afd4bea0b..1abfc2d92 100644 --- a/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.h +++ b/src/applications/bmqstoragetool/m_bmqstoragetool_journalfileprocessor.h @@ -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`