Skip to content

Commit b61a81b

Browse files
committed
Remove dead code.
Signed-off-by: Michal Zientkiewicz <michalz@nvidia.com>
1 parent 3003e45 commit b61a81b

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

dali/core/exec/thread_pool_base_test.cc

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -210,16 +210,6 @@ TYPED_TEST(NewThreadPoolJobTest, RethrowMultipleErrors) {
210210
EXPECT_THROW(job.Run(tp, true), MultipleErrors);
211211
}
212212

213-
template <typename... Args>
214-
void SyncPrint(Args&& ...args) {
215-
static std::mutex mtx;
216-
std::lock_guard guard(mtx);
217-
std::stringstream ss;
218-
print(ss, std::forward<Args>(args)...);
219-
auto &&str = ss.str();
220-
printf("%s", str.c_str());
221-
}
222-
223213
TYPED_TEST(NewThreadPoolJobTest, Reentrant) {
224214
TypeParam job;
225215
ThreadPoolBase tp(1); // must not hang with just one thread

0 commit comments

Comments
 (0)