mirror of
https://github.com/rbock/sqlpp11.git
synced 2026-01-05 12:40:40 -06:00
Removed implementation of unwanted dispatch code
This commit is contained in:
@@ -113,10 +113,7 @@ struct MockDbT: public sqlpp::connection
|
||||
}
|
||||
|
||||
template<typename T>
|
||||
auto _run(const T& t, const std::false_type&) -> decltype(t._run(*this))
|
||||
{
|
||||
return decltype(t._run(*this)){};
|
||||
}
|
||||
auto _run(const T& t, const std::false_type&) -> decltype(t._run(*this));
|
||||
|
||||
template<typename T>
|
||||
auto operator() (const T& t) -> decltype(t._run(*this))
|
||||
|
||||
Reference in New Issue
Block a user