mirror of
https://github.com/boostorg/utility.git
synced 2025-05-08 18:34:02 +00:00
Fixed violation of 'explicit' constructor
[SVN r12256]
This commit is contained in:
parent
1bf28b3de2
commit
67f4f45653
@ -100,7 +100,8 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
// Test data
|
// Test data
|
||||||
static iter_type const fruit_begin, fruit_end;
|
static iter_type const fruit_begin;
|
||||||
|
static iter_type const fruit_end;
|
||||||
|
|
||||||
// Test parts
|
// Test parts
|
||||||
static void post_increment_test();
|
static void post_increment_test();
|
||||||
@ -123,12 +124,12 @@ test_opr_base::scratch_array_type
|
|||||||
test_opr_base::scratch = "";
|
test_opr_base::scratch = "";
|
||||||
|
|
||||||
template <typename T, typename R, typename P>
|
template <typename T, typename R, typename P>
|
||||||
typename test_opr<T, R, P>::iter_type const
|
typename test_opr<T, R, P>::iter_type const
|
||||||
test_opr<T, R, P>::fruit_begin( fruit );
|
test_opr<T, R, P>::fruit_begin = test_iter<T,R,P>( fruit );
|
||||||
|
|
||||||
template <typename T, typename R, typename P>
|
template <typename T, typename R, typename P>
|
||||||
typename test_opr<T, R, P>::iter_type const
|
typename test_opr<T, R, P>::iter_type const
|
||||||
test_opr<T, R, P>::fruit_end( fruit + fruit_length );
|
test_opr<T, R, P>::fruit_end = test_iter<T,R,P>( fruit + fruit_length );
|
||||||
|
|
||||||
|
|
||||||
// Main testing function
|
// Main testing function
|
||||||
|
Loading…
x
Reference in New Issue
Block a user