We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12ecb3e commit bbdfd6dCopy full SHA for bbdfd6d
Marlin/src/libs/circularqueue.h
@@ -51,7 +51,7 @@ class CircularQueue {
51
* of item this queue will handle and N defines the maximum number of
52
* items that can be stored on the queue.
53
*/
54
- CircularQueue<T, N>() {
+ CircularQueue() {
55
buffer.size = N;
56
buffer.count = buffer.head = buffer.tail = 0;
57
}
0 commit comments