We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9d2a4c commit daf0bd7Copy full SHA for daf0bd7
1 file changed
src/Series.cpp
@@ -58,7 +58,8 @@ namespace
58
// support for std::tie
59
operator std::tuple< bool &, int &, uint64_t & >()
60
{
61
- return { isContained, padding, iteration };
+ return std::tuple< bool &, int &, uint64_t & >{
62
+ isContained, padding, iteration };
63
}
64
};
65
0 commit comments