Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
metrics: change push_back({...}) to emplace_back(...)
Some compilers interpret {...} as an initializer list, probably due to std::tuple's constructor (which is the value type) being explicit. Changing to emplace_back() avoids the issue. Fixes scylladb#275.
- Loading branch information