mirror of https://github.com/CGAL/cgal
signed/unsigned warning. Don't remember why I have unsigned here, I thought I'd put signed everywhere...
This commit is contained in:
parent
794cd86431
commit
a4063dd4a0
|
|
@ -31,7 +31,7 @@ template<class NT_,class Dim_,class Max_dim_=Dim_> struct Array_vector {
|
|||
template<class> struct Property : boost::false_type {};
|
||||
|
||||
static const unsigned d_=Max_dim_::value;
|
||||
CGAL_static_assertion(d_ != UNKNOWN_DIMENSION);
|
||||
CGAL_static_assertion(d_ != (unsigned)UNKNOWN_DIMENSION);
|
||||
|
||||
typedef cpp0x::array<NT,d_> Vector;
|
||||
struct Construct_vector {
|
||||
|
|
|
|||
Loading…
Reference in New Issue