diff options
Diffstat (limited to 'src/mongo/util/stacktrace_windows.cpp')
-rw-r--r-- | src/mongo/util/stacktrace_windows.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/stacktrace_windows.cpp b/src/mongo/util/stacktrace_windows.cpp index 0e7eacf40d7..bf98e1f0646 100644 --- a/src/mongo/util/stacktrace_windows.cpp +++ b/src/mongo/util/stacktrace_windows.cpp @@ -48,7 +48,6 @@ #include <string> #include <vector> -#include "mongo/base/disallow_copying.h" #include "mongo/base/init.h" #include "mongo/stdx/memory.h" #include "mongo/util/assert_util.h" @@ -65,7 +64,8 @@ const auto kPathBufferSize = 1024; // symbol handler. Because access to the symbol handler API is not thread-safe, it also provides // a lock/unlock method so the whole symbol handler can be used with a stdx::lock_guard. class SymbolHandler { - MONGO_DISALLOW_COPYING(SymbolHandler); + SymbolHandler(const SymbolHandler&) = delete; + SymbolHandler& operator=(const SymbolHandler&) = delete; public: SymbolHandler() { |