mirror of https://github.com/CGAL/cgal
removed non-need copy constructor added to drop_or_dispatch_output_iterator
in revision 56902
This commit is contained in:
parent
d9a4f82a66
commit
26dcdbcba2
|
|
@ -1389,11 +1389,6 @@ public:
|
||||||
|
|
||||||
Dispatch_or_drop_output_iterator(O1 out1):Base(out1){}
|
Dispatch_or_drop_output_iterator(O1 out1):Base(out1){}
|
||||||
|
|
||||||
//Added because required by MSVC10
|
|
||||||
Dispatch_or_drop_output_iterator(const Self& other):
|
|
||||||
Base(static_cast<const Base&>(other))
|
|
||||||
{}
|
|
||||||
|
|
||||||
#if defined(__EDG__)
|
#if defined(__EDG__)
|
||||||
typedef cpp0x::tuple<O1> Iterator_tuple;
|
typedef cpp0x::tuple<O1> Iterator_tuple;
|
||||||
|
|
||||||
|
|
@ -1495,11 +1490,6 @@ public:
|
||||||
|
|
||||||
Dispatch_or_drop_output_iterator(O1 out1,O2 out2):Base(out1,out2){}
|
Dispatch_or_drop_output_iterator(O1 out1,O2 out2):Base(out1,out2){}
|
||||||
|
|
||||||
//Added because required by MSVC10
|
|
||||||
Dispatch_or_drop_output_iterator(const Self& other):
|
|
||||||
Base(static_cast<const Base&>(other))
|
|
||||||
{}
|
|
||||||
|
|
||||||
#if defined(__EDG__)
|
#if defined(__EDG__)
|
||||||
typedef cpp0x::tuple<O1,O2> Iterator_tuple;
|
typedef cpp0x::tuple<O1,O2> Iterator_tuple;
|
||||||
|
|
||||||
|
|
@ -1614,11 +1604,6 @@ public:
|
||||||
|
|
||||||
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3):Base(out1,out2,out3){}
|
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3):Base(out1,out2,out3){}
|
||||||
|
|
||||||
//Added because required by MSVC10
|
|
||||||
Dispatch_or_drop_output_iterator(const Self& other):
|
|
||||||
Base(static_cast<const Base&>(other))
|
|
||||||
{}
|
|
||||||
|
|
||||||
#if defined(__EDG__)
|
#if defined(__EDG__)
|
||||||
typedef cpp0x::tuple<O1,O2,O3> Iterator_tuple;
|
typedef cpp0x::tuple<O1,O2,O3> Iterator_tuple;
|
||||||
|
|
||||||
|
|
@ -1743,11 +1728,6 @@ public:
|
||||||
|
|
||||||
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4):Base(out1,out2,out3,out4){}
|
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4):Base(out1,out2,out3,out4){}
|
||||||
|
|
||||||
//Added because required by MSVC10
|
|
||||||
Dispatch_or_drop_output_iterator(const Self& other):
|
|
||||||
Base(static_cast<const Base&>(other))
|
|
||||||
{}
|
|
||||||
|
|
||||||
#if defined(__EDG__)
|
#if defined(__EDG__)
|
||||||
typedef cpp0x::tuple<O1,O2,O3,O4> Iterator_tuple;
|
typedef cpp0x::tuple<O1,O2,O3,O4> Iterator_tuple;
|
||||||
|
|
||||||
|
|
@ -1882,11 +1862,6 @@ public:
|
||||||
|
|
||||||
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4,O5 out5):Base(out1,out2,out3,out4,out5){}
|
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4,O5 out5):Base(out1,out2,out3,out4,out5){}
|
||||||
|
|
||||||
//Added because required by MSVC10
|
|
||||||
Dispatch_or_drop_output_iterator(const Self& other):
|
|
||||||
Base(static_cast<const Base&>(other))
|
|
||||||
{}
|
|
||||||
|
|
||||||
#if defined(__EDG__)
|
#if defined(__EDG__)
|
||||||
typedef cpp0x::tuple<O1,O2,O3,O4,O5> Iterator_tuple;
|
typedef cpp0x::tuple<O1,O2,O3,O4,O5> Iterator_tuple;
|
||||||
|
|
||||||
|
|
@ -2031,11 +2006,6 @@ public:
|
||||||
|
|
||||||
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4,O5 out5,O6 out6):Base(out1,out2,out3,out4,out5,out6){}
|
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4,O5 out5,O6 out6):Base(out1,out2,out3,out4,out5,out6){}
|
||||||
|
|
||||||
//Added because required by MSVC10
|
|
||||||
Dispatch_or_drop_output_iterator(const Self& other):
|
|
||||||
Base(static_cast<const Base&>(other))
|
|
||||||
{}
|
|
||||||
|
|
||||||
#if defined(__EDG__)
|
#if defined(__EDG__)
|
||||||
typedef cpp0x::tuple<O1,O2,O3,O4,O5,O6> Iterator_tuple;
|
typedef cpp0x::tuple<O1,O2,O3,O4,O5,O6> Iterator_tuple;
|
||||||
|
|
||||||
|
|
@ -2190,11 +2160,6 @@ public:
|
||||||
|
|
||||||
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4,O5 out5,O6 out6,O7 out7):Base(out1,out2,out3,out4,out5,out6,out7){}
|
Dispatch_or_drop_output_iterator(O1 out1,O2 out2,O3 out3,O4 out4,O5 out5,O6 out6,O7 out7):Base(out1,out2,out3,out4,out5,out6,out7){}
|
||||||
|
|
||||||
//Added because required by MSVC10
|
|
||||||
Dispatch_or_drop_output_iterator(const Self& other):
|
|
||||||
Base(static_cast<const Base&>(other))
|
|
||||||
{}
|
|
||||||
|
|
||||||
#if defined(__EDG__)
|
#if defined(__EDG__)
|
||||||
typedef cpp0x::tuple<O1,O2,O3,O4,O5,O6,O7> Iterator_tuple;
|
typedef cpp0x::tuple<O1,O2,O3,O4,O5,O6,O7> Iterator_tuple;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue