1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/devel/libclaw/files/patch-claw-impl-rectangle.tpp
2013-09-18 02:36:27 +00:00

12 lines
529 B
C++

--- claw/impl/rectangle.tpp.orig 2013-07-03 23:34:38.000000000 +0400
+++ claw/impl/rectangle.tpp 2013-09-14 02:57:21.105226690 +0400
@@ -140,7 +140,7 @@
claw::math::rectangle<U> claw::math::rectangle<T>::cast_value_type_to() const
{
return claw::math::rectangle<U>
- ( position.cast_value_type_to<U>(), (U)width, (U)height );
+ ( position.template cast_value_type_to<U>(), (U)width, (U)height );
} // rectangle::cast_value_type_to()
/*----------------------------------------------------------------------------*/