Skip to content

Commit 1bfc0c4

Browse files
Update contents/stacks_and_queues/code/c++/queue.cpp
removing unnecessary comment Co-authored-by: Dimitri Belopopsky <[email protected]>
1 parent 2a89d60 commit 1bfc0c4

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

contents/stacks_and_queues/code/c++/queue.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ namespace my {
5858

5959
T& front() const { return _front->value; }
6060
T const& front() const { return _front->value; }
61-
// returning reference can very usefull if someone wants to modify _front element
6261

6362
size_t size() const { return count; }
6463

0 commit comments

Comments
 (0)