Use more specific include

boost/urls/urls.hpp pulls in all of boost url, when in this context, we
only want url_view.hpp.  Per the coding standard (specifically in
regards to boost) pull in the more specific header

Tested: Code compiles.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I85bc45bdfcc7bc1d8e87be23fe4884b6ec8c4227
diff --git a/redfish-core/include/error_messages.hpp b/redfish-core/include/error_messages.hpp
index f2b7d23..d9f571c 100644
--- a/redfish-core/include/error_messages.hpp
+++ b/redfish-core/include/error_messages.hpp
@@ -16,7 +16,7 @@
 #pragma once
 #include "http_response.hpp"
 
-#include <boost/url/urls.hpp>
+#include <boost/url/url_view.hpp>
 #include <nlohmann/json.hpp>
 #include <source_location.hpp>