• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jupp0r / prometheus-cpp / 4192383612

pending completion
4192383612

Pull #634

github

GitHub
Merge 039bc354a into 1833c1848
Pull Request #634: Update deps

773 of 802 relevant lines covered (96.38%)

109256.95 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/core/include/prometheus/detail/future_std.h
1
#pragma once
2

3
#include <memory>
4
#include <utility>
5

6
namespace prometheus {
7
namespace detail {
8

9
// Remove as soon C++14 can be used.
10
template <typename T, typename... Args>
11
std::unique_ptr<T> make_unique(Args&&... args) {
158✔
12
  return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
166✔
13
}
14

15
}  // namespace detail
16
}  // namespace prometheus
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc