1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00

Merge pull request #18981 from anton-potapov:fix_gnet_package_compilation_std_17

This commit is contained in:
Alexander Alekhin
2020-12-01 17:42:12 +00:00
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -16,8 +16,8 @@
#include <opencv2/gapi/infer.hpp>
cv::gapi::GNetPackage::GNetPackage(std::initializer_list<GNetParam> &&ii)
: networks(std::move(ii)) {
cv::gapi::GNetPackage::GNetPackage(std::initializer_list<GNetParam> ii)
: networks(ii) {
}
std::vector<cv::gapi::GBackend> cv::gapi::GNetPackage::backends() const {