aboutsummaryrefslogtreecommitdiff
path: root/build2/variable.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/variable.ixx')
-rw-r--r--build2/variable.ixx7
1 files changed, 3 insertions, 4 deletions
diff --git a/build2/variable.ixx b/build2/variable.ixx
index 1e9dfe6..4d70685 100644
--- a/build2/variable.ixx
+++ b/build2/variable.ixx
@@ -136,10 +136,9 @@ namespace build2
inline T&
cast (value& v)
{
- assert (v && v.type == &value_traits<T>::value_type);
- return *static_cast<T*> (v.type->cast == nullptr
- ? static_cast<void*> (&v.data_)
- : const_cast<void*> (v.type->cast (v, v.type)));
+ // Forward to const T&.
+ //
+ return const_cast<T&> (cast<T> (static_cast <const value&> (v)));
}
template <typename T>