From d7570e7aad09f22df9abb0622e3f253526b8abe1 Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Fri, 24 Sep 2021 10:44:16 +0300 Subject: [PATCH] Fixed KW (#7635) --- ngraph/core/src/file_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ngraph/core/src/file_util.cpp b/ngraph/core/src/file_util.cpp index 14d9a3dc45d..d759b4a45a2 100644 --- a/ngraph/core/src/file_util.cpp +++ b/ngraph/core/src/file_util.cpp @@ -39,7 +39,7 @@ void file_util::iterate_files(const string& path, function func, bool recurse, bool include_links) { - return ov::util::iterate_files(path, func, recurse, include_links); + ov::util::iterate_files(path, func, recurse, include_links); } std::string file_util::sanitize_path(const std::string& path) {