COMPMID-2670: [CL/GC] Create a test case for dynamic tensor support

Change-Id: I35d28786ee3843ac11c1211aea55328782a99382
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com>
Reviewed-on: https://review.mlplatform.org/c/1958
Tested-by: Arm Jenkins <bsgcomp@arm.com>
Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
diff --git a/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h b/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h
index 2e68f8e..fa10fdd 100644
--- a/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h
+++ b/arm_compute/runtime/GLES_COMPUTE/functions/GCNormalizationLayer.h
@@ -36,6 +36,7 @@
 
 namespace arm_compute
 {
+// Forward declarations
 class IGCTensor;
 
 /** Basic function to compute a normalization layer. This function calls the following OpenGL ES kernels:
@@ -43,7 +44,6 @@
  * -# @ref GCPixelWiseMultiplicationKernel
  * -# @ref GCFillBorderKernel
  * -# @ref GCNormalizationLayerKernel
- *
  */
 class GCNormalizationLayer : public IFunction
 {
@@ -69,5 +69,5 @@
     GCPixelWiseMultiplicationKernel _multiply_kernel; /**< Pixel multiplication kernel to run */
     GCFillBorderKernel              _border_handler;  /**< Kernel to handle  borders */
 };
-}
+} // namespace arm_compute
 #endif /* __ARM_COMPUTE_GCNORMALIZATIONLAYER_H__ */