Removed duplicate config_key_type alias

This isn't used in config_attribute_value.*pp but rather in config.*pp.

(cherry-picked from commit 9977addd64)
This commit is contained in:
Charles Dang 2018-04-14 17:25:14 +11:00
parent 1f8ba287dd
commit 58a61af5f9

View file

@ -67,18 +67,6 @@
# define USE_HETEROGENOUS_LOOKUPS
#endif
#ifdef USE_HETEROGENOUS_LOOKUPS
#if BOOST_VERSION > 106100
#include <boost/utility/string_view.hpp>
using config_key_type = boost::string_view;
#else
#include <boost/utility/string_ref.hpp>
using config_key_type = boost::string_ref;
#endif
#else
using config_key_type = const std::string &;
#endif
class enum_tag;
/**