|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r84088 - trunk/libs/geometry/index/test/rtree/exceptions
From: adam.wulkiewicz_at_[hidden]
Date: 2013-04-29 16:51:26
Author: awulkiew
Date: 2013-04-29 16:51:25 EDT (Mon, 29 Apr 2013)
New Revision: 84088
URL: http://svn.boost.org/trac/boost/changeset/84088
Log:
geometry.index test: default parameters used in rstar exceptions test.
Text files modified:
trunk/libs/geometry/index/test/rtree/exceptions/rtree_exceptions_rst.cpp | 8 +++++---
1 files changed, 5 insertions(+), 3 deletions(-)
Modified: trunk/libs/geometry/index/test/rtree/exceptions/rtree_exceptions_rst.cpp
==============================================================================
--- trunk/libs/geometry/index/test/rtree/exceptions/rtree_exceptions_rst.cpp (original)
+++ trunk/libs/geometry/index/test/rtree/exceptions/rtree_exceptions_rst.cpp 2013-04-29 16:51:25 EDT (Mon, 29 Apr 2013)
@@ -7,14 +7,16 @@
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
+#include <Windows.h>
+
#include <rtree/exceptions/test_exceptions.hpp>
int test_main(int, char* [])
{
- test_rtree_value_exceptions< bgi::rstar<4, 2, 0, 2> >();
- test_rtree_value_exceptions(bgi::dynamic_rstar(4, 2, 0, 2));
+ test_rtree_value_exceptions< bgi::rstar<4, 2> >();
+ test_rtree_value_exceptions(bgi::dynamic_rstar(4, 2));
- test_rtree_elements_exceptions< bgi::rstar_throwing<4, 2, 0, 2> >();
+ test_rtree_elements_exceptions< bgi::rstar_throwing<4, 2> >();
return 0;
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk