diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 14:39:48 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2013-09-16 14:39:48 +0000 |
commit | 18fd4bec97159cbaa7501a8a1b67540e0865e88b (patch) | |
tree | 75ebe7e194ba940cc12f8263ce9a35a32760d40e /plugins/Dbx_tree/src/intrinsics.h | |
parent | 3d60e28ce573bfd28286d108eeb43ec29bf44d48 (diff) |
removed not needed _MSC_VER checks
git-svn-id: http://svn.miranda-ng.org/main/trunk@6088 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dbx_tree/src/intrinsics.h')
-rw-r--r-- | plugins/Dbx_tree/src/intrinsics.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/plugins/Dbx_tree/src/intrinsics.h b/plugins/Dbx_tree/src/intrinsics.h index 7cb8af18f3..2627fc03fc 100644 --- a/plugins/Dbx_tree/src/intrinsics.h +++ b/plugins/Dbx_tree/src/intrinsics.h @@ -1,9 +1,7 @@ #pragma once
-#ifdef _MSC_VER
-
#include <intrin.h>
-#include "stdint.h"
+#include <stdint.h>
#ifdef _M_X64
@@ -399,9 +397,3 @@ inline uint32_t ROR_32(uint32_t Value, uint8_t Shift) #error unsupported architecture
#endif
-
-#else
-
-#error unsupported compiler
-
-#endif
|