From ed61b409f544ef68885dec5617bd37748ec018ad Mon Sep 17 00:00:00 2001 From: Roland Reichwein Date: Mon, 15 Feb 2021 13:25:26 +0100 Subject: Fixed template signature --- include/unicode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/unicode.h') diff --git a/include/unicode.h b/include/unicode.h index 3dcf29f..502ec16 100644 --- a/include/unicode.h +++ b/include/unicode.h @@ -249,7 +249,7 @@ namespace unicode::detail { utf_back_insert_iterator(string_type& s): s(s) {} - utf_back_insert_iterator& operator=(const utf_back_insert_iterator& other) + utf_back_insert_iterator& operator=(const utf_back_insert_iterator& other) { if (std::addressof(other.s) != std::addressof(s)) throw std::runtime_error("utf_back_insert_iterator assignment operator actually called! Iterator should not be assigned to."); -- cgit v1.2.3