Merge pull request #976 from willwray/patch-1

Fix Inconsistent definition of czstring in comments
This commit is contained in:
Gabriel Dos Reis 2017-07-24 11:25:18 -07:00 committed by GitHub
commit 45fff26517

View File

@ -18755,7 +18755,7 @@ Distinguishing these alternatives prevents misunderstandings and bugs.
All we know is that it is supposed to be the nullptr or point to at least one character
void f1(zstring s); // s is a C-style string or the nullptr
void f1(czstring s); // s is a C-style string that is not the nullptr
void f1(czstring s); // s is a C-style string constant or the nullptr
void f1(std::byte* s); // s is a pointer to a byte (C++17)
##### Note