diff options
author | Billy Donahue <billy.donahue@mongodb.com> | 2018-02-05 14:31:11 -0500 |
---|---|---|
committer | Billy Donahue <billy.donahue@mongodb.com> | 2018-02-06 10:16:15 -0500 |
commit | 09d4e0d92d5678a21de3cf6138631998c62d20fb (patch) | |
tree | 16bec911c97f81bfd37ef58dbc76d6536e21885a /src/mongo/db/commands/cpuload.cpp | |
parent | 1f376bcf8824df1a6122c297d5205daa1e6ff8a7 (diff) | |
download | mongo-09d4e0d92d5678a21de3cf6138631998c62d20fb.tar.gz |
SERVER-33136 const-ify the command auth accessors
Diffstat (limited to 'src/mongo/db/commands/cpuload.cpp')
-rw-r--r-- | src/mongo/db/commands/cpuload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/cpuload.cpp b/src/mongo/db/commands/cpuload.cpp index 587ee0af693..1b388967b32 100644 --- a/src/mongo/db/commands/cpuload.cpp +++ b/src/mongo/db/commands/cpuload.cpp @@ -57,7 +57,7 @@ public: } virtual void addRequiredPrivileges(const std::string& dbname, const BSONObj& cmdObj, - std::vector<Privilege>* out) {} // No auth required + std::vector<Privilege>* out) const {} // No auth required virtual bool run(OperationContext* txn, const string& badns, const BSONObj& cmdObj, |