Open 3Hren opened 8 years ago
There are some maps with std::string. However an attribute name is a std::string_view, and without c++17 it's required to always convert view into string to perform find operation.
std::string
std::string_view
This can be optimized.
There are some maps with
std::string
. However an attribute name is astd::string_view
, and without c++17 it's required to always convert view into string to perform find operation.This can be optimized.