From 9ea32ed1c057a4873f10d9203488ba5182d2face Mon Sep 17 00:00:00 2001 From: Eric Teunis de Boone Date: Wed, 1 Jul 2020 15:11:48 +0200 Subject: [PATCH] Ex4.3 feedback: declare global String operator+() in header file --- ex4.3/String.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ex4.3/String.hh b/ex4.3/String.hh index cb2cd91..daf8c96 100644 --- a/ex4.3/String.hh +++ b/ex4.3/String.hh @@ -32,4 +32,6 @@ private: } ; +String operator+( const String& lhs, const String& rhs ); + #endif