forked from M-Labs/nac3
1
0
Fork 0

core/irrt: fix improper template def

This commit is contained in:
lyken 2024-07-26 15:06:57 +08:00
parent 92b97a9f4f
commit 19c2beffbb
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
#include <cstdlib>
template <class T>
void print_value(const T& value) {}
void print_value(const T& value);
template <>
void print_value(const int8_t& value) {