Skip to content

Commit f661fc0

Browse files
committed
Trying to reproduce
1 parent ffe96c2 commit f661fc0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/test_xfixed.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -305,8 +305,9 @@ namespace xt
305305
class FixedMember
306306
{
307307
public:
308-
FixedMember(double foo)
308+
FixedMember(size_t bar, double foo)
309309
{
310+
m_bar = bar;
310311
m_foo = foo;
311312
m_I = xt::xtensor_fixed<double, xt::xshape<2, 2>>({{1.0, 0.0},
312313
{0.0, 1.0}});
@@ -319,13 +320,14 @@ namespace xt
319320
}
320321

321322
private:
323+
size_t m_bar;
322324
double m_foo;
323325
xt::xtensor_fixed<double, xt::xshape<2, 2>> m_I;
324326
};
325327

326328
TEST(xtensor_fixed, member)
327329
{
328-
FixedMember c(1.2);
330+
FixedMember c(20, 1.2);
329331
auto m = c.get();
330332
auto r = xt::xtensor_fixed<double, xt::xshape<2, 2>>({{2.0, 0.0},
331333
{0.0, 2.0}});

0 commit comments

Comments
 (0)