summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/sasl_options.h
diff options
context:
space:
mode:
authorAndy Schwerin <schwerin@mongodb.com>2015-10-23 18:00:22 -0400
committerAndy Schwerin <schwerin@mongodb.com>2015-10-23 18:02:06 -0400
commit0ca67590714744c2cb5242d0536bae48ea8c6795 (patch)
treed5dcc643be5b87977798b01b37f7ef4a51d8475c /src/mongo/db/auth/sasl_options.h
parent9284edb11f0626c77017117ef02790881586aa26 (diff)
downloadmongo-0ca67590714744c2cb5242d0536bae48ea8c6795.tar.gz
SERVER-21097 Add a lint rule to prohibit std::atomic, add NOLINT to existing uses.
Diffstat (limited to 'src/mongo/db/auth/sasl_options.h')
-rw-r--r--src/mongo/db/auth/sasl_options.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/auth/sasl_options.h b/src/mongo/db/auth/sasl_options.h
index 55b1f8fa7ab..6139ea10fde 100644
--- a/src/mongo/db/auth/sasl_options.h
+++ b/src/mongo/db/auth/sasl_options.h
@@ -48,8 +48,8 @@ struct SASLGlobalParams {
std::string hostName;
std::string serviceName;
std::string authdPath;
- std::atomic<int> scramIterationCount;
- std::atomic<int> authFailedDelay;
+ std::atomic<int> scramIterationCount; // NOLINT
+ std::atomic<int> authFailedDelay; // NOLINT
SASLGlobalParams();
};