From 8ed89bae847c82f9ea302e4642b0c8c9356a5538 Mon Sep 17 00:00:00 2001 From: Anton Potapov Date: Tue, 3 Mar 2020 11:37:40 +0300 Subject: [PATCH] KW: G-API tests - fixes for uninitialized variables --- modules/gapi/test/gapi_opaque_tests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gapi/test/gapi_opaque_tests.cpp b/modules/gapi/test/gapi_opaque_tests.cpp index 08ea3b1..07e483f 100644 --- a/modules/gapi/test/gapi_opaque_tests.cpp +++ b/modules/gapi/test/gapi_opaque_tests.cpp @@ -37,7 +37,7 @@ G_TYPED_KERNEL(PaintPoint, , "test.opaqu }; struct MyCustomType{ - int num; + int num = -1; std::string s; }; -- 2.7.4