Skip to content

Commit 805f66e

Browse files
committed
utl: remove const per clang-tidy
Signed-off-by: Peter Gadfort <[email protected]>
1 parent ff77387 commit 805f66e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utl/src/LoggerCommon.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void metric(const char* metric, const char* value)
6565
logger->metric(metric, value);
6666
}
6767

68-
void metric_integer(const char* metric, const int64_t value)
68+
void metric_integer(const char* metric, int64_t value)
6969
{
7070
Logger* logger = getLogger();
7171
logger->metric(metric, value);

src/utl/src/LoggerCommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ void critical(utl::ToolId tool, int id, const char* msg);
1616
void open_metrics(const char* metrics_filename);
1717
void close_metrics(const char* metrics_filename);
1818
void metric(const char* metric, const char* value);
19-
void metric_integer(const char* metric, const int64_t value);
19+
void metric_integer(const char* metric, int64_t value);
2020
void metric_float(const char* metric, const double value);
2121
void metric_float(const char* metric, const char* value);
2222
void set_metrics_stage(const char* fmt);

0 commit comments

Comments
 (0)