Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/mp/type-map.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void CustomBuildField(TypeList<std::map<KeyLocalType, ValueLocalType>>,
Value&& value,
Output&& output)
{
// FIXME dededup with vector handler above
// FIXME dedup with vector handler above
auto list = output.init(value.size());
size_t i = 0;
for (const auto& elem : value) {
Expand Down
2 changes: 1 addition & 1 deletion include/mp/type-set.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ void CustomBuildField(TypeList<std::set<LocalType>>,
Value&& value,
Output&& output)
{
// FIXME dededup with vector handler above
// FIXME dedup with vector handler above
auto list = output.init(value.size());
size_t i = 0;
for (const auto& elem : value) {
Expand Down
Loading