mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
Fixed unused param
Accidentally used a c23 feature. MacOS runner didn't like that.
This commit is contained in:
@@ -5,7 +5,8 @@
|
|||||||
|
|
||||||
int counter = 0;
|
int counter = 0;
|
||||||
|
|
||||||
void count(const char*) {
|
void count(const char* msg) {
|
||||||
|
(void)msg;
|
||||||
counter++;
|
counter++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user