18 lines
355 B
C++
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 */
|