Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRokas Kupstys <rokups@zoho.com>2019-01-19 14:03:30 +0300
committerRokas Kupstys <rokups@zoho.com>2019-01-19 14:53:10 +0300
commit8157e3a0b38942dadb90a63de73e855d7c75e293 (patch)
treec805778e88565856aa42acc4d9f9b5381932fbf7 /server/TracyPopcnt.hpp
parent32f0a27d3bcae88dd584ea8e0ee8373fa3797920 (diff)
Fix builds with MingW.
Diffstat (limited to 'server/TracyPopcnt.hpp')
-rw-r--r--server/TracyPopcnt.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/TracyPopcnt.hpp b/server/TracyPopcnt.hpp
index 57f5c9ee..ec8dd197 100644
--- a/server/TracyPopcnt.hpp
+++ b/server/TracyPopcnt.hpp
@@ -1,7 +1,7 @@
#ifndef __TRACYPOPCNT_HPP__
#define __TRACYPOPCNT_HPP__
-#ifdef _MSC_VER
+#ifdef _WIN32
# include <intrin.h>
# define TracyCountBits __popcnt64
#else