summaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/config')
-rw-r--r--src/config/Global.cxx6
-rw-r--r--src/config/Global.hxx3
2 files changed, 0 insertions, 9 deletions
diff --git a/src/config/Global.cxx b/src/config/Global.cxx
index efea9e24e..ab2a69d0d 100644
--- a/src/config/Global.cxx
+++ b/src/config/Global.cxx
@@ -102,12 +102,6 @@ config_get_path(ConfigOption option)
}
unsigned
-config_get_unsigned(ConfigOption option, unsigned default_value)
-{
- return config_data.GetUnsigned(option, default_value);
-}
-
-unsigned
config_get_positive(ConfigOption option, unsigned default_value)
{
return config_data.GetPositive(option, default_value);
diff --git a/src/config/Global.hxx b/src/config/Global.hxx
index b5b5605eb..50d79c94a 100644
--- a/src/config/Global.hxx
+++ b/src/config/Global.hxx
@@ -72,9 +72,6 @@ AllocatedPath
config_get_path(enum ConfigOption option);
unsigned
-config_get_unsigned(enum ConfigOption option, unsigned default_value);
-
-unsigned
config_get_positive(enum ConfigOption option, unsigned default_value);
bool config_get_bool(enum ConfigOption option, bool default_value);