Skip to content

Commit fce7ed3

Browse files
committed
remove remaining comments
1 parent 8b04078 commit fce7ed3

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

demos/common/cpp/utils/include/utils/config_factory.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515
*/
1616

1717
#pragma once
18-
#include <stdint.h> // for uint32_t
18+
#include <stdint.h>
1919

20-
#include <map> // for map
21-
#include <set> // for set
22-
#include <string> // for string
20+
#include <map>
21+
#include <set>
22+
#include <string>
2323

24-
#include <openvino/openvino.hpp> // for AnyMap
24+
#include <openvino/openvino.hpp>
2525

2626
struct ModelConfig {
2727
std::string deviceName;

demos/common/cpp/utils/src/config_factory.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616

1717
#include "utils/config_factory.h"
1818

19-
#include <set> // for set, set<>::iterator
20-
#include <string> // for string, operator==, basic_string
21-
#include <utility> // for pair
22-
#include <vector> // for vector
19+
#include <set>
20+
#include <string>
21+
#include <utility>
22+
#include <vector>
2323

24-
#include <openvino/runtime/intel_gpu/properties.hpp> // for intel_gpu properties
24+
#include <openvino/runtime/intel_gpu/properties.hpp>
2525

26-
#include "utils/args_helper.hpp" // for parseDevices, parseValuePerDevice
26+
#include "utils/args_helper.hpp"
2727

2828
std::set<std::string> ModelConfig::getDevices() {
2929
if (devices.empty()) {

0 commit comments

Comments
 (0)