diff options
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/print.cc | 2 | ||||
-rw-r--r-- | src/libexpr/print.hh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/print.cc b/src/libexpr/print.cc index 19ef6f8aa..43e366d08 100644 --- a/src/libexpr/print.cc +++ b/src/libexpr/print.cc @@ -608,7 +608,7 @@ std::ostream & operator<<(std::ostream & output, const ValuePrinter & printer) } template<> -HintFmt & HintFmt::operator%(const ValuePrinter & value) +fmt_internal::HintFmt & fmt_internal::HintFmt::operator%(const ValuePrinter & value) { fmt % value; return *this; diff --git a/src/libexpr/print.hh b/src/libexpr/print.hh index 7ddda81b8..94cb11ca7 100644 --- a/src/libexpr/print.hh +++ b/src/libexpr/print.hh @@ -86,6 +86,6 @@ std::ostream & operator<<(std::ostream & output, const ValuePrinter & printer); * magenta. */ template<> -HintFmt & HintFmt::operator%(const ValuePrinter & value); +fmt_internal::HintFmt & fmt_internal::HintFmt::operator%(const ValuePrinter & value); } |