summaryrefslogtreecommitdiff
path: root/src/mongo/util/text.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/text.h')
-rw-r--r--src/mongo/util/text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/text.h b/src/mongo/util/text.h
index 06c4a1de126..76309541d0c 100644
--- a/src/mongo/util/text.h
+++ b/src/mongo/util/text.h
@@ -32,7 +32,6 @@
#include <string>
#include <vector>
-#include "mongo/base/disallow_copying.h"
#include "mongo/base/string_data.h"
#include "mongo/config.h"
@@ -93,7 +92,8 @@ inline std::wstring toNativeString(const char* s) {
#endif
class WindowsCommandLine {
- MONGO_DISALLOW_COPYING(WindowsCommandLine);
+ WindowsCommandLine(const WindowsCommandLine&) = delete;
+ WindowsCommandLine& operator=(const WindowsCommandLine&) = delete;
char** _argv;
char** _envp;