add spaces in case CC is neglecting to add them

This commit is contained in:
Daniel Russel 2009-07-07 16:42:28 +00:00
parent 398bc92692
commit f6b7658161
1 changed files with 5 additions and 5 deletions

View File

@ -61,18 +61,18 @@
}
#define CGAL_ITERATOR(uc_name, lc_name, const_it_type,it_type, bexpr, eexpr) \
typedef boost::iterator_range<it_type> uc_name##s; \
typedef boost::iterator_range< it_type > uc_name##s; \
uc_name##s lc_name##s() { \
return uc_name##s(it_type(bexpr), it_type(eexpr)); \
} \
typedef boost::iterator_range<const_it_type> uc_name##_consts; \
typedef boost::iterator_range< const_it_type > uc_name##_consts; \
uc_name##_consts lc_name##s() const { \
return uc_name##_consts(const_it_type(bexpr), const_it_type(eexpr)); \
}
#define CGAL_CONST_ITERATOR(uc_name, lc_name, it_type, bexpr, eexpr) \
typedef boost::iterator_range<it_type> uc_name##s; \
typedef boost::iterator_range< it_type > uc_name##s; \
uc_name##s lc_name##s() const { \
return uc_name##s(bexpr, eexpr); \
}
@ -95,14 +95,14 @@
bool contains(ucname##_key k) const { \
return fexpr != eexpr; \
} \
std::iterator_traits<ucname##s::iterator>::reference get(ucname##_key k) { \
std::iterator_traits< ucname##s::iterator >::reference get(ucname##_key k) { \
CGAL_assertion(contains(k)); \
return *fexpr; \
} \
ucname##s::iterator find(ucname##_key k) { \
return fexpr; \
} \
std::iterator_traits<ucname##s::const_iterator>::value_type get(ucname##_key k) const { \
std::iterator_traits< ucname##s::const_iterator >::value_type get(ucname##_key k) const { \
CGAL_assertion(contains(k)); \
return *fexpr; \
} \