Skip to content

Commit daf0bd7

Browse files
committed
Fix CI error
1 parent f9d2a4c commit daf0bd7

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Series.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ namespace
5858
// support for std::tie
5959
operator std::tuple< bool &, int &, uint64_t & >()
6060
{
61-
return { isContained, padding, iteration };
61+
return std::tuple< bool &, int &, uint64_t & >{
62+
isContained, padding, iteration };
6263
}
6364
};
6465

0 commit comments

Comments
 (0)