Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1185)

Unified Diff: third_party/crashpad/crashpad/util/stdlib/map_insert.h

Issue 2555353002: Update Crashpad to 32981a3ee9d7c2769fb27afa038fe2e194cfa329 (Closed)
Patch Set: fix readme Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/util/stdlib/map_insert.h
diff --git a/third_party/crashpad/crashpad/util/stdlib/map_insert.h b/third_party/crashpad/crashpad/util/stdlib/map_insert.h
index 956271b32add5ae053f8f23a6d9704badf7061d9..d2c3b842110c06d81fe3952e41de05fbb04cf484 100644
--- a/third_party/crashpad/crashpad/util/stdlib/map_insert.h
+++ b/third_party/crashpad/crashpad/util/stdlib/map_insert.h
@@ -21,12 +21,12 @@
namespace crashpad {
//! \brief Inserts a mapping from \a key to \a value into \a map, or replaces
-//! an existing mapping so that \a key maps to \value.
+//! an existing mapping so that \a key maps to \a value.
//!
-//! This behaves similarly to `std::map<>::insert_or_assign()` proposed for
+//! This behaves similarly to `std::map<>::%insert_or_assign()` proposed for
//! C++17, except that the \a old_value parameter is added.
//!
-//! \param[inout] map The map to operate on.
+//! \param[in,out] map The map to operate on.
//! \param[in] key The key that should be mapped to \a value.
//! \param[in] value The value that \a key should map to.
//! \param[out] old_value If \a key was previously present in \a map, this will

Powered by Google App Engine
This is Rietveld 408576698