From f773cf9fb96e25d064f43cffdc893ac905d91f15 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Sat, 28 Sep 2019 13:13:41 +0200 Subject: uhd: Replace boost::regex with std::regex boost::regex was a requirement until the minimum version of gcc was increased. Since it is at version 5.3 now, using Boost.Regex is no longer necessary. This change is a pure search-and-replace; Boost and std versions of regex are compatible and use the same syntax. --- host/tests/dpdk_test.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'host/tests/dpdk_test.cpp') diff --git a/host/tests/dpdk_test.cpp b/host/tests/dpdk_test.cpp index df4717154..c32e47824 100644 --- a/host/tests/dpdk_test.cpp +++ b/host/tests/dpdk_test.cpp @@ -17,14 +17,11 @@ #include #include #include -#include #include #include #include #include -static const boost::regex colons(":"); - namespace po = boost::program_options; namespace { -- cgit v1.2.3