Skip to content

Commit

Permalink
Merge pull request #463 from alxvth/fix_global_linkage_again
Browse files Browse the repository at this point in the history
Fix global linkage again
  • Loading branch information
yurymalkov authored Jun 13, 2023
2 parents a4c8b0b + 2c538db commit 643e9dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hnswlib/hnswlib.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#ifdef _MSC_VER
#include <intrin.h>
#include <stdexcept>
void cpuid(int32_t out[4], int32_t eax, int32_t ecx) {
static void cpuid(int32_t out[4], int32_t eax, int32_t ecx) {
__cpuidex(out, eax, ecx);
}
static __int64 xgetbv(unsigned int x) {
Expand Down

0 comments on commit 643e9dc

Please sign in to comment.