# HG changeset patch
# User David A. Holland
# Date 1653969494 14400
# Node ID 5b21f127e957f793e746befbae006f6b00fa7c24
# Parent  60b08b68c75082867936238e101db3381693298f
silence random gcc warning

diff -r 60b08b68c750 -r 5b21f127e957 anagram/agcore/ut.cpp
--- a/anagram/agcore/ut.cpp	Mon May 30 23:56:45 2022 -0400
+++ b/anagram/agcore/ut.cpp	Mon May 30 23:58:14 2022 -0400
@@ -263,7 +263,8 @@
   if (tokenName.isNotNull()) {
     LOGV(tokenName) LCV(tokenName->string.pointer());
     ass(tokenName->string.pointer());
-    if (token->pure) acs(PUREMARK); return;
+    if (token->pure) acs(PUREMARK);
+    return;
   }
   // token does not have an explicit name. Is it a keyword?
   LOGV(token);