Beef
Beef copied to clipboard
Missing 'o' in Beefy::BfTokenToString 'goto' ?
Looking through the code I can see in Beefy::BfTokenToString this code that seems to be missing an 'o':
const char* Beefy::BfTokenToString(BfToken token)
{
switch (token)
{
...
case BfToken_Goto:
return "got"; //!!!<<< it seems that it's missing an 'o' at the end
...
}