Update multipart.h

format
This commit is contained in:
Iulian Radu 2022-07-18 22:08:44 +03:00 committed by GitHub
parent b89d13ac3b
commit 31160579ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 {};