Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[range.istream, range.take.while.sentinel] Initialize member pointer … #3605

Merged
merged 1 commit into from
Jan 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/ranges.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2621,7 +2621,7 @@

private:
struct @\exposid{iterator}@; // \expos
basic_istream<CharT, Traits>* @\exposid{stream_}@{}; // \expos
basic_istream<CharT, Traits>* @\exposid{stream_}@ = nullptr; // \expos
Val @\exposid{object_}@ = Val(); // \expos
};
}
Expand Down Expand Up @@ -2690,7 +2690,7 @@
friend bool operator==(const @\exposid{iterator}@& x, default_sentinel_t);

private:
basic_istream_view* @\exposid{parent_}@{}; // \expos
basic_istream_view* @\exposid{parent_}@ = nullptr; // \expos
};
}
\end{codeblock}
Expand Down Expand Up @@ -4399,7 +4399,7 @@
using @\exposid{base-t}@ = conditional_t<Const, const V, V>; // \expos

sentinel_t<@\exposid{base-t}@> @\exposid{end_}@ = sentinel_t<@\exposid{base-t}@>(); // \expos
const Pred* @\exposid{pred_}@{}; // \expos
const Pred* @\exposid{pred_}@ = nullptr; // \expos
public:
@\exposid{sentinel}@() = default;
constexpr explicit @\exposid{sentinel}@(sentinel_t<@\exposid{base-t}@> end, const Pred* pred);
Expand Down