diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-03-19 10:57:17 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-03-19 10:57:17 +0200 |
commit | a251fe4d48237a4d9c9530dafc7bbdce6028e9cf (patch) | |
tree | a869b336f221df414c35bdf6ce3167a29ab279f1 /pyuno | |
parent | cfeeceab9ea03b5507cdb7ddb90fcc1b8b1a4e85 (diff) |
We require MSVC2013 (_MSC_VER == 1800) now
Change-Id: Ice8504041f22e00f2e5010813d9dff1d2987c8d6
Diffstat (limited to 'pyuno')
-rw-r--r-- | pyuno/source/module/pyuno_impl.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno_impl.hxx b/pyuno/source/module/pyuno_impl.hxx index 83fbda5206cb..e066b7327b12 100644 --- a/pyuno/source/module/pyuno_impl.hxx +++ b/pyuno/source/module/pyuno_impl.hxx @@ -19,7 +19,7 @@ #ifndef INCLUDED_PYUNO_SOURCE_MODULE_PYUNO_IMPL_HXX #define INCLUDED_PYUNO_SOURCE_MODULE_PYUNO_IMPL_HXX -#if defined(_MSC_VER) && (_MSC_VER >= 1600) +#if defined(_MSC_VER) // Workaround for some horrible hypot() mess #include <math.h> #endif |