mirror of
https://github.com/rbock/sqlpp11.git
synced 2025-12-31 02:00:24 -06:00
Fixed missing std::
This commit is contained in:
@@ -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]...>;
|
||||
|
||||
Reference in New Issue
Block a user