We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a89d60 commit 1bfc0c4Copy full SHA for 1bfc0c4
contents/stacks_and_queues/code/c++/queue.cpp
@@ -58,7 +58,6 @@ namespace my {
58
59
T& front() const { return _front->value; }
60
T const& front() const { return _front->value; }
61
- // returning reference can very usefull if someone wants to modify _front element
62
63
size_t size() const { return count; }
64
0 commit comments