aboutsummaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorJohn Richardson <john.richardson@arm.com>2017-09-18 12:44:01 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:35:24 +0000
commitb482ce1d601a777250f28ed118ac250943aca4eb (patch)
tree4dede807814744620f77b99b5dfa1b612b7fee34 /utils
parent5a6e0532b39d674f8773014a0a553d9bc70a9baa (diff)
downloadComputeLibrary-b482ce1d601a777250f28ed118ac250943aca4eb.tar.gz
COMPMID-497: Move FillBorder to new validation
Change-Id: Iefa628de780b76977578a250c17f27962664eae0 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/88094 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Pablo Tello <pablo.tello@arm.com>
Diffstat (limited to 'utils')
-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;