limelight
limelight copied to clipboard
🔥 cleanup(unused-function) - remove unreferenced funciton
This was failing to build on machine due to this unused function.
Running make would return the following warning:
src/message.c:43:14: warning: unused function 'token_to_string'
[-Wunused-function]
static char *token_to_string(struct token token)
^
removing it seems to work make the warning go away :shrug:
this happened for me in limelight-v0.0.1
Removing the line of code did the fix for me. Thanks