Update symbols_resolver.h

Missing Default Return Type. Fixed
This commit is contained in:
Naomino 2024-07-07 12:01:43 +02:00
parent 379ec554a8
commit 06903b69c6

View file

@ -68,6 +68,8 @@ public:
return "Tls";
case SymbolType::NoType:
return "NoType";
default:
return "Invalid";
}
}