Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
src: fix variadic templates for IncrementSocketStat
Browse files Browse the repository at this point in the history
PR-URL: #31
  • Loading branch information
danbev authored and jasnell committed Aug 19, 2019
1 parent ea43e3a commit 50d7cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_quic_session.h
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ class QuicSession : public AsyncWrap,
uint64_t amount,
session_stats* a,
Members... mems) {
IncrementStat<session_stats, Members>(amount, a, mems);
IncrementStat<session_stats, Members...>(amount, a, mems...);
}

// SendScope will cause the session to flush it's
Expand Down

0 comments on commit 50d7cfe

Please sign in to comment.