I think to remove these warning, since these are warning of unused varaibles in function so
writing this, will remove the warning.I am not sure if this is right way to do.
if(unused_var){}
I think to remove these warning, since these are warning of unused varaibles in function so
writing this, will remove the warning.I am not sure if this is right way to do.
if(unused_var){}
Adding some useless code to use an otherwise unused variable does not make sense. Get rid of the unused variables.
As can be seen var addr is accessed via assembly function. (i don't know how it happened, but code works). Also writer had added last statement "return true", to fool the compiler so it don't generate any warning. however code return in assembly part inside.
On compiling there is warning that addr is unused. So I think adding another statement before
return function will remove the warning.
if(addr){}
However I didn't made any changes since I didn't read its license terms till now.