Skip to content

Commit

Permalink
libstd: Remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
WerWolv committed Jul 7, 2024
1 parent 5832e56 commit c7bca89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/source/pl/lib/std/hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace pl::lib::libstd::hash {

template<size_t Size>
static u128 crc(pl::core::Evaluator *ctx, const auto &params) {
static u128 crc(const auto &params) {
if (!params[0].isPattern() && !params[0].isString())
core::err::E0012.throwError("Only patterns and strings are supported for CRC hash functions.");

Expand Down

0 comments on commit c7bca89

Please sign in to comment.