aboutsummaryrefslogtreecommitdiff
path: root/src/core/Size3D.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/Size3D.cpp')
-rw-r--r--src/core/Size3D.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/Size3D.cpp b/src/core/Size3D.cpp
index 3ee9fb8e5c..b56a99acd7 100644
--- a/src/core/Size3D.cpp
+++ b/src/core/Size3D.cpp
@@ -22,12 +22,14 @@
* SOFTWARE.
*/
#include "arm_compute/core/Size3D.h"
+
#include "support/StringSupport.h"
namespace arm_compute
{
std::string Size3D::to_string() const
{
- return support::cpp11::to_string(width) + std::string("x") + support::cpp11::to_string(height) + std::string("x") + support::cpp11::to_string(depth);
+ return support::cpp11::to_string(width) + std::string("x") + support::cpp11::to_string(height) + std::string("x") +
+ support::cpp11::to_string(depth);
}
-} \ No newline at end of file
+} // namespace arm_compute