mirror of
https://github.com/rbock/sqlpp11.git
synced 2024-11-15 20:31:16 +08:00
Fixed missing std::
This commit is contained in:
parent
74cafe35dd
commit
f97dc68428
@ -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]...>;
|
||||
|
Loading…
Reference in New Issue
Block a user