1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

KW: G-API tests - fixes for uninitialized variables

This commit is contained in:
Anton Potapov
2020-03-03 11:37:40 +03:00
parent 8808aaccff
commit 8ed89bae84
+1 -1
View 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;
};