mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
Reformat code with clang-format-18
This commit is contained in:
@@ -1057,8 +1057,9 @@ public:
|
||||
// map, set
|
||||
template <bool maybe_multi = IsMulti, bool maybe_map = IsMap>
|
||||
auto
|
||||
insert(value_type&& value) -> typename std::
|
||||
enable_if<!maybe_multi && !maybe_map, std::pair<iterator, bool>>::type;
|
||||
insert(value_type&& value) -> typename std::enable_if<
|
||||
!maybe_multi && !maybe_map,
|
||||
std::pair<iterator, bool>>::type;
|
||||
|
||||
// multimap, multiset
|
||||
template <bool maybe_multi = IsMulti, bool maybe_map = IsMap>
|
||||
@@ -2799,8 +2800,9 @@ aged_unordered_container<
|
||||
Clock,
|
||||
Hash,
|
||||
KeyEqual,
|
||||
Allocator>::insert(value_type&& value) -> typename std::
|
||||
enable_if<!maybe_multi && !maybe_map, std::pair<iterator, bool>>::type
|
||||
Allocator>::insert(value_type&& value) ->
|
||||
typename std::
|
||||
enable_if<!maybe_multi && !maybe_map, std::pair<iterator, bool>>::type
|
||||
{
|
||||
maybe_rehash(1);
|
||||
typename cont_type::insert_commit_data d;
|
||||
|
||||
Reference in New Issue
Block a user