We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7f2d7c commit fd2bc65Copy full SHA for fd2bc65
1 file changed
cpp_utils/include/cpp_utils/macros/macros.hpp
@@ -87,5 +87,11 @@ namespace utils {
87
#define _EPROSIMA_WINDOWS_PLATFORM 1
88
#endif // if defined(WIN32) || defined(_WIN32) || defined(__WIN32) || defined(WIN64) || defined(_WIN64) || defined(__WIN64) || defined(_MSC_VER)
89
90
+#if defined(WIN64) || defined(_WIN64) || defined(__WIN64) || defined(_WIN64) || defined(__x86_64__) || defined(__ppc64__) || defined(__aarch64__)
91
+#define _PLATFORM_64BIT 1
92
+#else
93
+#define _PLATFORM_32BIT 1
94
+#endif
95
+
96
} /* namespace utils */
97
} /* namespace eprosima */
0 commit comments