Skip to content

Commit

Permalink
more squashing
Browse files Browse the repository at this point in the history
  • Loading branch information
arahlin committed Aug 24, 2024
1 parent e33a2df commit ee0a2ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/G3NetworkSender.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ G3NetworkSender::G3NetworkSender(std::string hostname, int port, int max_queue,
}

try {
serializer_threads_.reserve(n_serializers);
for (size_t i=0; i<n_serializers; i++) {
serializer_threads_.reserve(n_serializers_);
for (size_t i=0; i<n_serializers_; i++) {
auto t = boost::make_shared<serializer_thread_data>(serialization_queue);
t->thread = std::thread(SerializeLoop, t);
serializer_threads_.push_back(t);
Expand Down

0 comments on commit ee0a2ce

Please sign in to comment.