Fixed missing std::

This commit is contained in:
rbock
2014-11-30 20:19:38 +01:00
parent 74cafe35dd
commit f97dc68428

View File

@@ -43,7 +43,7 @@ namespace sqlpp
template<std::size_t N, const char (&s) [N], typename T>
struct make_char_sequence_impl;
template<std::size_t N, const char (&s) [N], size_t... i>
template<std::size_t N, const char (&s) [N], std::size_t... i>
struct make_char_sequence_impl<N, s, sqlpp::detail::index_sequence<i...>>
{
using type = char_sequence<s[i]...>;