From f9e8b36d31f2a2af4f3b748a1886c4e344970fb2 Mon Sep 17 00:00:00 2001 From: jessleathe <116766177+jessleathe@users.noreply.github.com> Date: Thu, 8 Feb 2024 17:37:07 -0500 Subject: [PATCH] Fixed the error by adding '}' to end of function --- src/modules/phone/Phone.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/phone/Phone.cpp b/src/modules/phone/Phone.cpp index 843a2b652..7edd3f733 100644 --- a/src/modules/phone/Phone.cpp +++ b/src/modules/phone/Phone.cpp @@ -99,3 +99,4 @@ std::string Phone::areaCode(const std::string& phoneNumber) //returns an empty string if no country code is found, otherwise return the country code return countryCode == "+" ? "" : countryCode; } +}