comparison anagram/agcore/ut.cpp @ 10:5b21f127e957

silence random gcc warning
author David A. Holland
date Mon, 30 May 2022 23:58:14 -0400
parents 13d2b8934445
children
comparison
equal deleted inserted replaced
9:60b08b68c750 10:5b21f127e957
261 //Does token have an explicit name, if so, use that. 261 //Does token have an explicit name, if so, use that.
262 Symbol tokenName = token->token_name; 262 Symbol tokenName = token->token_name;
263 if (tokenName.isNotNull()) { 263 if (tokenName.isNotNull()) {
264 LOGV(tokenName) LCV(tokenName->string.pointer()); 264 LOGV(tokenName) LCV(tokenName->string.pointer());
265 ass(tokenName->string.pointer()); 265 ass(tokenName->string.pointer());
266 if (token->pure) acs(PUREMARK); return; 266 if (token->pure) acs(PUREMARK);
267 return;
267 } 268 }
268 // token does not have an explicit name. Is it a keyword? 269 // token does not have an explicit name. Is it a keyword?
269 LOGV(token); 270 LOGV(token);
270 key = token->key; 271 key = token->key;
271 //if (key) { 272 //if (key) {