aboutsummaryrefslogtreecommitdiff
path: root/utils/TypePrinter.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/TypePrinter.h')
-rw-r--r--utils/TypePrinter.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h
index 4ea9326b2b..758034884c 100644
--- a/utils/TypePrinter.h
+++ b/utils/TypePrinter.h
@@ -578,6 +578,13 @@ inline std::string to_string(const BorderMode &mode)
return str.str();
}
+inline std::string to_string(const BorderSize &border)
+{
+ std::stringstream str;
+ str << border;
+ return str.str();
+}
+
inline std::string to_string(const InterpolationPolicy &policy)
{
std::stringstream str;