Skip to content

Commit db153c1

Browse files
committed
removed -Wunused-parameter from ML backend
1 parent 9e9761f commit db153c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Backends/ApMonBackend.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ inline int ApMonBackend::convertTimestamp(const std::chrono::time_point<std::chr
3434
return static_cast<int>(std::chrono::system_clock::to_time_t(timestamp));
3535
}
3636

37-
void ApMonBackend::addGlobalTag(std::string name, std::string value)
37+
void ApMonBackend::addGlobalTag(std::string, std::string value)
3838
{
3939
if (!entity.empty()) entity += ".";
4040
entity += value;
4141
}
4242

43-
void ApMonBackend::sendMultiple(std::string measurement, std::vector<Metric>&& metrics)
43+
void ApMonBackend::sendMultiple(std::string, std::vector<Metric>&& metrics)
4444
{
4545
int noMetrics = metrics.size();
4646
char **paramNames, **paramValues;

0 commit comments

Comments
 (0)