https://svn.lrde.epita.fr/svn/oln/trunk/static
Index: ChangeLog
from Roland Levillain <roland(a)lrde.epita.fr>
Static: Catch up with current Metalic
* tests/entry.cc (mlc::abort_): Remove this fake and use
mlc/abort.hh instead.
* stc/properties.hh: s/mlc::is_found/mlc::is_found_/g.
stc/properties.hh | 4 ++--
tests/entry.cc | 8 +-------
2 files changed, 3 insertions(+), 9 deletions(-)
Index: tests/entry.cc
--- tests/entry.cc (revision 447)
+++ tests/entry.cc (working copy)
@@ -5,13 +5,7 @@
#include <mlc/case.hh>
#include <mlc/assert.hh>
#include <mlc/is_a.hh>
-
-// FIXME: Fake. Remove this when mlc::abort_ is added to the project.
-namespace mlc
-{
- template <typename T>
- class abort_ {};
-}
+#include <mlc/abort.hh>
/*----------.
Index: stc/properties.hh
--- stc/properties.hh (revision 447)
+++ stc/properties.hh (working copy)
@@ -333,9 +333,9 @@
\
/* Did we found the virtual type? */ \
static const bool found_external_p = \
- mlc_bool(mlc::is_found<external_typedef>); \
+ mlc_bool(mlc::is_found_<external_typedef>); \
static const bool found_internal_p = \
- mlc_bool(mlc::is_found<internal_typedef>); \
+ mlc_bool(mlc::is_found_<internal_typedef>); \
\
typedef typename \
internal::select_typedef<found_external_p, found_internal_p, \