aboutsummaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorMoritz Pflanzer <moritz.pflanzer@arm.com>2017-07-05 11:07:07 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:15:39 +0100
commitfc95ed2b9900471922d93c963b263f1f506da167 (patch)
tree765f6a94e965ed47b0c0215a725f869e0619a611 /support
parent7d323a6adca97c130a0fc7c6299c75d581906edd (diff)
downloadComputeLibrary-fc95ed2b9900471922d93c963b263f1f506da167.tar.gz
COMPMID-415: New framework - base framework [1/5]
Change-Id: Icfbfb43321c3bbe6e2aa511dd03a613eed7734a5 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/79760 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'support')
-rw-r--r--support/ToolchainSupport.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/support/ToolchainSupport.h b/support/ToolchainSupport.h
index 36b08affb9..1a909d56db 100644
--- a/support/ToolchainSupport.h
+++ b/support/ToolchainSupport.h
@@ -154,7 +154,7 @@ inline T copysign(T x, T y)
{
return ::copysign(x, y);
}
-#else
+#else /* __ANDROID__ */
/** Convert integer and float values to string.
*
* @note This function acts as a convenience wrapper around std::to_string. The
@@ -260,7 +260,7 @@ inline T copysign(T x, T y)
{
return std::copysign(x, y);
}
-#endif
+#endif /* __ANDROID__ */
} // namespace cpp11
namespace cpp14
@@ -307,4 +307,4 @@ make_unique(Args &&...) = delete;
} // namespace cpp14
} // namespace support
} // namespace arm_compute
-#endif
+#endif /* ARM_COMPUTE_TEST_TOOLCHAINSUPPORT */