Fixed a minor error in an example in I.12.

This commit is contained in:
Jiwan 2015-09-29 20:55:46 +02:00
parent cda8d7ad5c
commit e41b65cca1

View File

@ -1312,7 +1312,7 @@ That is, its value must be `delete`d or transferred to another owner, as is done
**Example**:
int length(const char* p); // it is not clear whether strlen(nullptr) is valid
int length(const char* p); // it is not clear whether length(nullptr) is valid
length(nullptr); // OK?