From 47d154dd49ed82da594f90fc5af0793407128e20 Mon Sep 17 00:00:00 2001
From: gatopeich <7722268+gatopeich@users.noreply.github.com>
Date: Sat, 11 Jul 2020 00:34:12 +0100
Subject: [PATCH] Remove redundant comment

---
 single_include/nlohmann/json.hpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp
index 0b19ea45..54f22274 100644
--- a/single_include/nlohmann/json.hpp
+++ b/single_include/nlohmann/json.hpp
@@ -15926,7 +15926,6 @@ struct ordered_map : std::vector<std::pair<const Key, T>, Allocator>
                 // Since we cannot move const Keys, re-construct them in place
                 for (auto next = it; ++next != this->end(); ++it)
                 {
-                    // *it = std::move(*next); // deleted
                     it->~value_type(); // Destroy but keep allocation
                     new (&*it) value_type{std::move(*next)};
                 }