Skip to content
Snippets Groups Projects
Commit 08dc8d0e authored by Mark OLESEN's avatar Mark OLESEN
Browse files

BUG: Tuple2 construct null with uninitialized value

Had this:

    Tuple2() {}

Instead of:

    Tuple2() : f_(), s_() {}

which is the same as

    Tuple2() = default;

This meant that Tuple2<scalar, scalar>() was not being zero-initialized
parent 26d0d48f
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment