Get rid of wrap-string-view

This commit is contained in:
2022-02-24 13:50:43 -05:00
parent eb6cbebd20
commit 08f6aa2092
10 changed files with 53 additions and 68 deletions

View File

@@ -3,14 +3,15 @@
#define DRIVER_UTIL_HPP
#include "wrap-string.hpp"
#include "wrap-string-view.hpp"
#include "wrap-vector.hpp"
#include <string_view>
namespace drv {
void split_host_port(drv::string_view target, drv::string &host, drv::string &port);
void split_host_port(std::string_view target, drv::string &host, drv::string &port);
drv::vector<drv::string> parse_control_lst(drv::string_view ctrl);
drv::vector<drv::string> parse_control_lst(std::string_view ctrl);
}