Affected subclause: [istream.extractors]
Change: Character array extraction only takes array types
. Rationale: Increase safety via preventing buffer overflow at compile time
. Effect on original feature: Valid C++ 2017 code may fail to compile in this revision of C++:
auto p = new char[100];
char q[100];
std::cin >> std::setw(20) >> p;
std::cin >> std::setw(20) >> q;