mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
Merge pull request #380 from rholmes777/master
Update CppCoreGuidelines.md
This commit is contained in:
commit
250002e065
|
@ -2256,7 +2256,7 @@ Consider:
|
|||
|
||||
int length(Record* p);
|
||||
|
||||
When I call `length(r)` should I test for `r == nullptr` first? Should the implementation of `length()` test for `p == nullptr`?
|
||||
When I call `length(p)` should I test for `p == nullptr` first? Should the implementation of `length()` test for `p == nullptr`?
|
||||
|
||||
int length(not_null<Record*> p); // it is the caller's job to make sure p != nullptr
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user