summaryrefslogtreecommitdiff
path: root/db/security.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'db/security.cpp')
-rw-r--r--db/security.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/security.cpp b/db/security.cpp
index 6a01627..c552b53 100644
--- a/db/security.cpp
+++ b/db/security.cpp
@@ -16,7 +16,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "security.h"
#include "instance.h"
#include "client.h"
@@ -31,9 +31,9 @@ namespace mongo {
int AuthenticationInfo::warned = 0;
void AuthenticationInfo::print(){
- cout << "AuthenticationInfo: " << this << "\n";
+ cout << "AuthenticationInfo: " << this << '\n';
for ( map<string,Auth>::iterator i=m.begin(); i!=m.end(); i++ ){
- cout << "\t" << i->first << "\t" << i->second.level << "\n";
+ cout << "\t" << i->first << "\t" << i->second.level << '\n';
}
cout << "END" << endl;
}