aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-10-24 08:52:25 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-10-24 08:52:25 +0200
commite121dc6a5d73c53a3c1aebc9fa4ed187dd87aae5 (patch)
treee1e454764970e212fd5e8dde755b5e1c6d07f25d
parent6905b767aefcb7c3d444f6fa33169eb882bd1dd2 (diff)
Disable test for VC++
-rw-r--r--mysql/custom/driver.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql/custom/driver.cxx b/mysql/custom/driver.cxx
index d9453ec..5170e76 100644
--- a/mysql/custom/driver.cxx
+++ b/mysql/custom/driver.cxx
@@ -32,8 +32,8 @@ main (int argc, char* argv[])
o.p = point (1.1111, 2222222222.2);
o.pv.push_back (point (1.1234, 2.2345));
o.pv.push_back (point (3.3456, 4.4567));
- // VC8 just cannot roundtrip this.
-#if !defined(_MSC_VER) || _MSC_VER >= 1500
+ // VC just cannot roundtrip this.
+#ifndef _MSC_VER
o.pv.push_back (point (0.0000001, 0.000000001)); // Scientific notation.
#endif