added comments regarding msvc bug workarounds

This commit is contained in:
sliser
2015-12-27 11:26:29 +03:00
parent 4e898368fa
commit 46cb009ba4
28 changed files with 210 additions and 2 deletions

View File

@@ -35,6 +35,9 @@
namespace sqlpp
{
// workaround for msvc bug https://connect.microsoft.com/VisualStudio/Feedback/Details/2173198
// template <typename AliasProvider, typename Table, typename... ColumnSpec>
// struct table_alias_t : public member_t<ColumnSpec, column_t<AliasProvider, ColumnSpec>>...
template <typename AliasProvider, typename Table, typename... ColumnSpec>
struct table_alias_t : public ColumnSpec::_alias_t::template _member_t<column_t<AliasProvider, ColumnSpec>>...
{