From 452debbed8a4c7137d14a2e1abed3b7dd0339e4a Mon Sep 17 00:00:00 2001 From: grisenti Date: Wed, 16 Nov 2022 21:54:58 +0100 Subject: [PATCH] HPL1: fix formatting --- engines/hpl1/std/map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/hpl1/std/map.h b/engines/hpl1/std/map.h index 0faca347d7d..3241cc1ac42 100644 --- a/engines/hpl1/std/map.h +++ b/engines/hpl1/std/map.h @@ -138,7 +138,7 @@ public: return it; } - std::pair insert(value_type const &val) { + std::pair insert(const value_type &val) { iterator it = this->lower_bound(val.first); if (it == this->end() || !(it->first == val.first)) { size_t idx = it - this->begin();