From 11ba39793c016e8476e44be880fb267e059dd4eb Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Mon, 11 Jul 2022 09:50:41 -0700 Subject: Remove usages of boost::starts/ends_with Per the coding standard, now that C++ supports std::string::starts_with and std::string::ends_with, we should be using them over the boost alternatives. This commit goes through and updates all usages. Arguably some of these are incorrect, and instances of common error 13, but because this is mostly a mechanical it intentionally doesn't try to handle it. Tested: Unit tests pass. Signed-off-by: Ed Tanous Change-Id: Ic4c6e5d0da90f7442693199dc691a47d2240fa4f --- include/http_utility.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include/http_utility.hpp') diff --git a/include/http_utility.hpp b/include/http_utility.hpp index 3970992974..c150943f8f 100644 --- a/include/http_utility.hpp +++ b/include/http_utility.hpp @@ -1,7 +1,8 @@ #pragma once #include "http_request.hpp" -#include +#include +#include namespace http_helpers { -- cgit v1.2.3