Skip to content

Commit

Permalink
Update multipart.h
Browse files Browse the repository at this point in the history
format
  • Loading branch information
Iuliean authored Jul 18, 2022
1 parent b89d13a commit 3116057
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/crow/multipart.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ namespace crow
part get_part_by_name(const std::string& name)
{
mp_map::iterator result = part_map.find(name);
if(result != part_map.end())
if (result != part_map.end())
return result->second;
else
return {};
Expand Down

0 comments on commit 3116057

Please sign in to comment.