summaryrefslogtreecommitdiff
path: root/src/mongo/base
diff options
context:
space:
mode:
authorDaniel Moody <daniel.moody@mongodb.com>2021-07-29 15:28:20 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-08-02 23:52:53 +0000
commit27f328ad14b8fbc006c5c4103becd0f6a3aaaa5c (patch)
treedf483a3165f012efe9c395e4bae67aa8097fe1ab /src/mongo/base
parenteae9041c1c1320a15a6b13f3f1d4770a2b96e085 (diff)
downloadmongo-27f328ad14b8fbc006c5c4103becd0f6a3aaaa5c.tar.gz
SERVER-57446 fix clang-tidy header issues and add header-filter
Diffstat (limited to 'src/mongo/base')
-rw-r--r--src/mongo/base/status.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/base/status.h b/src/mongo/base/status.h
index 4d6e332f28a..6252df5e586 100644
--- a/src/mongo/base/status.h
+++ b/src/mongo/base/status.h
@@ -268,9 +268,9 @@ private:
static inline void unref(ErrorInfo* error);
};
-inline bool operator==(const ErrorCodes::Error lhs, const Status& rhs);
+inline bool operator==(ErrorCodes::Error lhs, const Status& rhs);
-inline bool operator!=(const ErrorCodes::Error lhs, const Status& rhs);
+inline bool operator!=(ErrorCodes::Error lhs, const Status& rhs);
std::ostream& operator<<(std::ostream& os, const Status& status);