Skip to content

Commit c50a8d7

Browse files
committed
fixed static function
1 parent 5328907 commit c50a8d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vmaware.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3473,7 +3473,7 @@ struct VM {
34733473
return (base_str.find(keyword) != std::string::npos);
34743474
};
34753475

3476-
[[nodiscard]] i32 popcount(u64 v) {
3476+
[[nodiscard]] static i32 popcount(u64 v) {
34773477
#if (GCC) || (CLANG)
34783478
return __builtin_popcountll(v);
34793479
#elif (MSVC)

0 commit comments

Comments
 (0)