While reading a codebase I came across the following statement:
(void)data;
data is a char* type.
What does the above statement achieve?
While reading a codebase I came across the following statement:
(void)data;
data is a char* type.
What does the above statement achieve?