Skip to content

Commit

Permalink
Make to_string non-templated
Browse files Browse the repository at this point in the history
  • Loading branch information
sivanov-work committed Oct 31, 2024
1 parent 955f132 commit 3fefade
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/plugins/intel_npu/tools/single-image-test/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,7 @@ std::vector<std::string> splitStringList(const std::string& str, char delim) {
return out;
}

template<template<class> class Container, class T>
std::string to_string(const Container<T>& c) {
std::string to_string(const std::vector<std::string>& c) {
std::stringstream stream;
std::string ret;
if (!c.empty()) {
Expand Down

0 comments on commit 3fefade

Please sign in to comment.