mirror of
https://github.com/google/googletest.git
synced 2025-04-04 21:15:03 +00:00
Update primer.md
For consistency and readability: the test below uses nullptr not NULL.
This commit is contained in:
parent
ff233bdd4c
commit
cd8565a014
1 changed files with 1 additions and 1 deletions
|
@ -261,7 +261,7 @@ class Queue {
|
|||
public:
|
||||
Queue();
|
||||
void Enqueue(const E& element);
|
||||
E* Dequeue(); // Returns NULL if the queue is empty.
|
||||
E* Dequeue(); // Returns nullptr if the queue is empty.
|
||||
size_t size() const;
|
||||
...
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue