Skip to content

Commit 477228f

Browse files
committed
fix: Missing namespace specifier
1 parent 0fde0e3 commit 477228f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/source/pl/lib/std/hash.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace pl::lib::libstd::hash {
1212
template<size_t Size>
1313
static u128 crc(const auto &params) {
1414
if (!params[0].isPattern() && !params[0].isString())
15-
core::err::E0012.throwError("Only patterns and strings are supported for CRC hash functions.");
15+
pl::core::err::E0012.throwError("Only patterns and strings are supported for CRC hash functions.");
1616

1717
auto bytes = params[0].toBytes();
1818
auto init = u64(params[1].toUnsigned());

0 commit comments

Comments
 (0)