mirror of https://github.com/CGAL/cgal
make swap inline to avoid link error
This commit is contained in:
parent
e8394435df
commit
341721bb2c
|
|
@ -172,7 +172,8 @@ inline std::ostream& operator << (std::ostream& os, const Exponent_vector& ev) {
|
||||||
CGAL_END_NAMESPACE
|
CGAL_END_NAMESPACE
|
||||||
|
|
||||||
namespace std{
|
namespace std{
|
||||||
template <> void swap(CGAL::Exponent_vector& ev1, CGAL::Exponent_vector& ev2){
|
template <> inline
|
||||||
|
void swap(CGAL::Exponent_vector& ev1, CGAL::Exponent_vector& ev2){
|
||||||
ev1.swap(ev2);
|
ev1.swap(ev2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue