Index: third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
diff --git a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h b/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
index f006cd011ae86033a2c5c56e9864eb70b55da23b..8afc18c160a1e6a510694c828f768e5048ef574d 100644 |
--- a/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
+++ b/third_party/mojo/src/mojo/public/cpp/bindings/lib/map_internal.h |
@@ -16,6 +16,7 @@ namespace internal { |
template <typename Key, typename Value, bool kValueIsMoveOnlyType> |
struct MapTraits {}; |
+// Defines traits of a map for which Value is not a move-only type. |
template <typename Key, typename Value> |
struct MapTraits<Key, Value, false> { |
// Map keys can't be move only types. |
@@ -105,6 +106,7 @@ struct MapTraits<Key, Value, false> { |
} |
}; |
+// Defines traits of a map for which Value is a move-only type. |
template <typename Key, typename Value> |
struct MapTraits<Key, Value, true> { |
// Map keys can't be move only types. |