Cleanup: replace NB with NOTE in comments

This commit is contained in:
Campbell Barton
2021-07-21 13:05:39 +10:00
parent dc8a924efa
commit 265c3a4724
16 changed files with 48 additions and 51 deletions

View File

@@ -62,8 +62,8 @@ template<typename _Tp> struct MEM_Allocator {
return &__x;
}
// NB: __n is permitted to be 0. The C++ standard says nothing
// about what the return value is when __n == 0.
/* NOTE: `__n` is permitted to be 0.
* The C++ standard says nothing about what the return value is when `__n == 0`. */
_Tp *allocate(size_type __n, const void * = 0)
{
_Tp *__ret = NULL;