diff options
Diffstat (limited to 'src/clients/cave/format_user_config.hh')
-rw-r--r-- | src/clients/cave/format_user_config.hh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/clients/cave/format_user_config.hh b/src/clients/cave/format_user_config.hh index 5835e8c8d..0730b9e65 100644 --- a/src/clients/cave/format_user_config.hh +++ b/src/clients/cave/format_user_config.hh @@ -117,11 +117,22 @@ namespace paludis OrderedFormatValuesBase<cs_>(this->map, c)... { } + + /* just to shut gcc up */ + OrderedFormatValues(const FormatValues<> &) + { + } }; template <char... cs_> struct MakeOrderedFormatValues; + template <> + struct MakeOrderedFormatValues<> + { + typedef OrderedFormatValues<> Type; + }; + template <char a_> struct MakeOrderedFormatValues<a_> { |