chore(Core/Common): delete macro UNUSED (#6119)

This commit is contained in:
Kargatum
2021-06-01 22:22:29 +07:00
committed by GitHub
parent 501f5e2702
commit d398c34c61
5 changed files with 6 additions and 8 deletions

View File

@@ -61,7 +61,7 @@ inline std::string ReadSkip(std::istringstream& iss, char term)
inline bool CheckDelimiter(std::istringstream& iss, char delimiter, const char* context)
{
UNUSED(context); // used only with EXTRA_LOGS
(void)context; // used only with EXTRA_LOGS
char c = iss.peek();
if (c != delimiter)
{