mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Merge pull request #976 from willwray/patch-1
Fix Inconsistent definition of czstring in comments
This commit is contained in:
commit
45fff26517
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user