Skip to content

Commit 5016a32

Browse files
committed
Remove const reference from number_to_hex().
1 parent 313b8fa commit 5016a32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wmtk/utils/Cache.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ long long nanoseconds_timestamp()
2323
.count();
2424
}
2525

26-
std::string number_to_hex(const long long& l)
26+
std::string number_to_hex(long long l)
2727
{
2828
return fmt::format("{0:x}", l);
2929
}

0 commit comments

Comments
 (0)