Skip to content

Commit 41434dc

Browse files
committed
Rename 'thread' to more accurate 'query'
1 parent 33ef170 commit 41434dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/recording.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ recording::recording(const std::string &filename, const std::vector<lsl::stream_
9292
stream_threads_.emplace_back(
9393
new std::thread(&recording::record_from_streaminfo, this, stream, true));
9494
// create a resolve-and-record thread for each item in the watchlist
95-
for (const auto &thread : watchfor)
95+
for (const auto &query : watchfor)
9696
stream_threads_.emplace_back(
97-
new std::thread(&recording::record_from_query_results, this, thread));
97+
new std::thread(&recording::record_from_query_results, this, query));
9898
// create a boundary chunk writer thread
9999
boundary_thread_ = std::make_unique<std::thread>(&recording::record_boundaries, this);
100100
}

0 commit comments

Comments
 (0)