IVGCVSW-7610 IVGCVSW-7616 Slice and StridedSlice for opaque delegate

* Change alignment in Shape.hpp

Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com>
Change-Id: Ibc21cf5c56a1ba2daa7507a5d5c2b7311756f17f
diff --git a/delegate/opaque/src/Shape.hpp b/delegate/opaque/src/Shape.hpp
index ecc545d..4c37c38 100644
--- a/delegate/opaque/src/Shape.hpp
+++ b/delegate/opaque/src/Shape.hpp
@@ -31,8 +31,7 @@
         return kTfLiteError;
     }
 
-    const TfLiteOpaqueTensor* tfLiteInputTensor =
-            TfLiteOpaqueContextGetOpaqueTensor(tfLiteContext, inputTensors[0]);
+    const TfLiteOpaqueTensor* tfLiteInputTensor = TfLiteOpaqueContextGetOpaqueTensor(tfLiteContext, inputTensors[0]);
     if (!IsValid(tfLiteContext, tfLiteInputTensor, operatorCode, nodeIndex))
     {
         return kTfLiteError;
@@ -50,8 +49,7 @@
         return kTfLiteError;
     }
 
-    const TfLiteOpaqueTensor* tfLiteOutputTensor =
-            TfLiteOpaqueContextGetOpaqueTensor(tfLiteContext, outputTensors[0]);
+    const TfLiteOpaqueTensor* tfLiteOutputTensor = TfLiteOpaqueContextGetOpaqueTensor(tfLiteContext, outputTensors[0]);
     if (!IsValid(tfLiteContext, tfLiteOutputTensor, operatorCode, nodeIndex))
     {
         return kTfLiteError;