only:dead?

This commit is contained in:
rusefillc 2025-01-08 18:43:20 -05:00
parent 4369cc0682
commit 4bd41049fe
1 changed files with 0 additions and 11 deletions

View File

@ -27,17 +27,6 @@ struct plain_get_float_s {
float *value;
};
template<typename T, size_t TCount>
T* findPair(const char *name, T array[TCount], size_t count) {
for (size_t i = 0; i < TCount; i++) {
T *current = &array[i];
if (strEqualCaseInsensitive(name, current->token)) {
return current;
}
}
return nullptr;
}
float getConfigValueByName(const char *name);
/**
* @return true if name was recognized, false otherwise