diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2021-07-29 15:28:20 -0500 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-08-02 23:52:53 +0000 |
commit | 27f328ad14b8fbc006c5c4103becd0f6a3aaaa5c (patch) | |
tree | df483a3165f012efe9c395e4bae67aa8097fe1ab /src/mongo/base | |
parent | eae9041c1c1320a15a6b13f3f1d4770a2b96e085 (diff) | |
download | mongo-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.h | 4 |
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); |