Remove a dead function bool_from_env_var

This commit is contained in:
ridiculousfish 2016-04-07 13:29:50 -07:00
parent 8477126ae4
commit d2ae00ca44

View file

@ -1737,9 +1737,3 @@ bool universal_notifier_t::notification_fd_became_readable(int fd)
{
return false;
}
static bool bool_from_env_var(const char *name, bool default_value)
{
const char *var = getenv(name);
return var ? from_string<bool>(var) : default_value;
}