enforce initialization and thus silence compiler warnings

This commit is contained in:
Axel Kohlmeyer
2021-09-16 07:58:21 -04:00
parent 75f2eb604d
commit e82a2a3280

View File

@ -3775,7 +3775,7 @@ int Variable::group_function(char *word, char *contents, Tree **tree,
// match word to group function // match word to group function
double value; double value = 0.0;
if (strcmp(word,"count") == 0) { if (strcmp(word,"count") == 0) {
if (narg == 1) value = group->count(igroup); if (narg == 1) value = group->count(igroup);