Misplaced 'mutable' specifier

BZ:159390

'mutable' specifier cannot be applied to anonymous members

Change-Id: Icf17bfe7c9b631a8792464420810154d150959b2
Category: feature differentiation
Domain: Video.Rendering-VPP
Origin: internal
Upstream-Candidate: no, not-aosp
Signed-off-by: Dmitry Shkurko <Dmitry.V.Shkurko@intel.com>
diff --git a/videovpp/test/main.cpp b/videovpp/test/main.cpp
index ce91027..5e7b0ef 100644
--- a/videovpp/test/main.cpp
+++ b/videovpp/test/main.cpp
@@ -52,7 +52,7 @@
     int pid;    // creator
 
     mutable int other;                                       // registered owner (pid)
-    mutable union { int data1; mutable drm_intel_bo *bo; };  // drm buffer object 
+    union { mutable int data1; mutable drm_intel_bo *bo; };  // drm buffer object 
     union { int data2; uint32_t fb; };                       // framebuffer id
     int pitch;                                               // buffer pitch (in bytes)
     int allocWidth;                                          // Allocated buffer width in pixels.