Skip to content

Commit 0b293da

Browse files
wdeconinckpmaciel
authored andcommitted
Avoid warning on some fussy compilers in Configuration about non-returning function
1 parent 2217b41 commit 0b293da

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/eckit/config/Configuration.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,7 @@ class Configuration : public Parametrisation {
190190
return isStringList(name);
191191
}
192192
}
193-
else {
194-
return false;
195-
}
193+
return false;
196194
}
197195

198196
template <typename T>

0 commit comments

Comments
 (0)