diff --git a/include/crow/multipart.h b/include/crow/multipart.h index 9efa89cf6..f7b6c24dd 100644 --- a/include/crow/multipart.h +++ b/include/crow/multipart.h @@ -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 {};