summaryrefslogtreecommitdiff
path: root/src/mongo/util/itoa.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/itoa.h')
-rw-r--r--src/mongo/util/itoa.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/itoa.h b/src/mongo/util/itoa.h
index 60cda13e676..37451847a95 100644
--- a/src/mongo/util/itoa.h
+++ b/src/mongo/util/itoa.h
@@ -32,7 +32,6 @@
#include <cstdint>
#include <limits>
-#include "mongo/base/disallow_copying.h"
#include "mongo/base/string_data.h"
namespace mongo {
@@ -42,7 +41,8 @@ namespace mongo {
* and only really should be used in hot code paths.
*/
class ItoA {
- MONGO_DISALLOW_COPYING(ItoA);
+ ItoA(const ItoA&) = delete;
+ ItoA& operator=(const ItoA&) = delete;
public:
static constexpr size_t kBufSize = std::numeric_limits<uint64_t>::digits10 //