Thomas Moulard <thomas.moulard(a)lrde.epita.fr> writes:
[...]
Index: tests/vtypes-and-exact.cc
===================================================================
--- tests/vtypes-and-exact.cc (revision 718)
+++ tests/vtypes-and-exact.cc (working copy)
@@ -40,7 +40,7 @@
// Helper macros.
#define my_type_of_(FromType, Alias) \
- my::direct_type_of_<FromType, my::typedef_:: Alias##_type>::ret
+ my::find_vtype<FromType, my::typedef_:: Alias##_type>::ret
#define my_type_of(FromType, Alias) \
typename my_type_of_(FromType, Alias)
Index: tests/vtypes.cc
===================================================================
--- tests/vtypes.cc (revision 718)
+++ tests/vtypes.cc (working copy)
@@ -37,7 +37,7 @@
// Helper macros.
#define my_type_of_(FromType, Alias) \
- my::direct_type_of_<FromType, my::typedef_:: Alias##_type>::ret
+ my::find_vtype<FromType, my::typedef_:: Alias##_type>::ret
#define my_type_of(FromType, Alias) \
typename my_type_of_(FromType, Alias)
Thanks! BTW, some parts of these tests are outdated w.r.t. the
current implementation of stc/scoop.hh. They were written when
src/was.scoop.hh was used.