signed/unsigned warning. Don't remember why I have unsigned here, I thought I'd put signed everywhere...

This commit is contained in:
Marc Glisse 2012-05-17 11:05:15 +00:00
parent 794cd86431
commit a4063dd4a0
1 changed files with 1 additions and 1 deletions

View File

@ -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 {