osrm-backend/include/util/string_view.hpp
2022-10-30 19:53:26 +01:00

18 lines
355 B
C++

#ifndef OSRM_STRING_VIEW_HPP
#define OSRM_STRING_VIEW_HPP
#include <boost/functional/hash.hpp>
#include <string_view>
namespace osrm
{
namespace util
{
// Convenience typedef: boost::string_ref, boost::string_view or C++17's string_view
// using StringView = std::string_view;
} // namespace util
} // namespace osrm
#endif /* OSRM_STRING_VIEW_HPP */