aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-21 21:07:24 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-08-21 21:07:24 +0000
commit0998c51d1f45d408f0d7c285c88b234d933401a0 (patch)
tree93918893b1aebfe79eed5a8b45fc53512df5f4e0 /Eigen/src/Core
parent58061f5ffc4d8ad178f6b640a3fd38e4ca341051 (diff)
- remove the ASM macro as in fact Gael had been removing all the remaining
asm("...") from the code while fixing MSVC compat (so your changes crossed one another). - move the pragma warning to CoreDeclarations, it's the right place to do early platform checks. CCMAIL:ps_ml@gmx.de
Diffstat (limited to 'Eigen/src/Core')
-rw-r--r--Eigen/src/Core/util/Macros.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Eigen/src/Core/util/Macros.h b/Eigen/src/Core/util/Macros.h
index 2f9fba579..a4530f353 100644
--- a/Eigen/src/Core/util/Macros.h
+++ b/Eigen/src/Core/util/Macros.h
@@ -28,14 +28,6 @@
#undef minor
-#ifdef _MSC_VER
-#pragma warning( disable : 4181 4244 )
-#define ASM(name) __asm(name)
-#else
-#define ASM(name) asm(name)
-#endif
-
-
#ifdef EIGEN_DONT_USE_UNROLLED_LOOPS
#define EIGEN_UNROLLING_LIMIT 0
#endif