KW: G-API tests - fixes for uninitialized variables
authorAnton Potapov <anton.potapov@intel.com>
Tue, 3 Mar 2020 08:37:40 +0000 (11:37 +0300)
committerAnton Potapov <anton.potapov@intel.com>
Tue, 3 Mar 2020 08:37:40 +0000 (11:37 +0300)
modules/gapi/test/gapi_opaque_tests.cpp

index 08ea3b1..07e483f 100644 (file)
@@ -37,7 +37,7 @@ G_TYPED_KERNEL(PaintPoint, <GMat(GPointOpaque, int, int, cv::Size)>, "test.opaqu
 };
 
 struct MyCustomType{
-    int num;
+    int num = -1;
     std::string s;
 };