You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RedHat Enterprise Linux 7 has a bug in its toolchain - `std::string`
doesn't have `noexcept` default constructor despite standard demands it.
Unfortunately, this problem is popular and our users have filed several
reports of build failure because of this bug - constructor of `Stream`
cannot be declared as `Stream() noexcept = default;` because it contains
`std::string` fields which cannot be noexcept-default-constructible.
Let's simply replace it with `Stream() noexcept {};` construction - it
won't actually change anything anyway.
0 commit comments