From 31160579ea97d1e84111da39da51b9adabfd9f22 Mon Sep 17 00:00:00 2001 From: Iulian Radu <64871927+Iuliean@users.noreply.github.com> Date: Mon, 18 Jul 2022 22:08:44 +0300 Subject: [PATCH] Update multipart.h format --- include/crow/multipart.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {};