aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr
diff options
context:
space:
mode:
authorwiggles dog <rbt@sent.as>2024-03-29 01:13:45 +0000
committerGerrit Code Review <gerrit@lix>2024-03-29 01:13:45 +0000
commit236bc046ba9713e5f7647b97d41608477daafa3b (patch)
tree6eef870ac08725e0d0d40403b7f08901f8bbcb54 /src/libexpr
parent55350bd68decdc1287a34e0b52a1f9fce9ae854b (diff)
parent8e63eca912a01659cef81b9d6d1cc7cb11edfff5 (diff)
Merge "Remove `HintFmt::operator%`" into main
Diffstat (limited to 'src/libexpr')
-rw-r--r--src/libexpr/print.cc2
-rw-r--r--src/libexpr/print.hh2
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);
}