Skip to content
Snippets Groups Projects
Commit 9136621b authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

fix warnings

parent 24f1d6b3
No related branches found
No related tags found
No related merge requests found
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
// Printing routines // Printing routines
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
/*
static inline ostream &operator <<(ostream &o,const TopAbs_ShapeEnum &A) static inline ostream &operator <<(ostream &o,const TopAbs_ShapeEnum &A)
{ {
switch(A) { switch(A) {
...@@ -86,12 +87,14 @@ static inline ostream &operator <<(ostream &o,const TopAbs_State &A) ...@@ -86,12 +87,14 @@ static inline ostream &operator <<(ostream &o,const TopAbs_State &A)
default: return o << "Unknown"; default: return o << "Unknown";
} }
} }
*/
static inline ostream &operator <<(ostream &o,const gp_Pnt &p) static inline ostream &operator <<(ostream &o,const gp_Pnt &p)
{ {
return o << "(" << p.Coord(1) << "," << p.Coord(2) << "," << p.Coord(3) << ")"; return o << "(" << p.Coord(1) << "," << p.Coord(2) << "," << p.Coord(3) << ")";
} }
/*
static inline ostream &operator <<(ostream &o,const TopOpeBRep_P2Dstatus &A) static inline ostream &operator <<(ostream &o,const TopOpeBRep_P2Dstatus &A)
{ {
switch(A) { switch(A) {
...@@ -103,6 +106,7 @@ static inline ostream &operator <<(ostream &o,const TopOpeBRep_P2Dstatus &A) ...@@ -103,6 +106,7 @@ static inline ostream &operator <<(ostream &o,const TopOpeBRep_P2Dstatus &A)
default: return o << "Unknown"; default: return o << "Unknown";
} }
} }
*/
template <typename T> template <typename T>
static inline std::ostream &operator<<(std::ostream &out, std::set<T> const &a) static inline std::ostream &operator<<(std::ostream &out, std::set<T> const &a)
......
...@@ -150,7 +150,7 @@ void filterColumns(std::vector<MElement*> &elem, ...@@ -150,7 +150,7 @@ void filterColumns(std::vector<MElement*> &elem,
// delete c[i]; // delete c[i];
} }
} }
printf("%d --> %d\n",elem.size(),toKeep.size()); printf("%lu --> %lu\n",elem.size(),toKeep.size());
elem = toKeep; elem = toKeep;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment