Skip to content

Commit bbdfd6d

Browse files
committed
- bugfix: template specification for constructor is invalid C++ syntax that was previously allowed due to compiler-forgiveness
1 parent 12ecb3e commit bbdfd6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/libs/circularqueue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class CircularQueue {
5151
* of item this queue will handle and N defines the maximum number of
5252
* items that can be stored on the queue.
5353
*/
54-
CircularQueue<T, N>() {
54+
CircularQueue() {
5555
buffer.size = N;
5656
buffer.count = buffer.head = buffer.tail = 0;
5757
}

0 commit comments

Comments
 (0)