mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 07:19:16 -04:00
12 lines
552 B
C++
12 lines
552 B
C++
--- math/MatrixCalc.h
|
|
+++ math/MatrixCalc.h
|
|
@@ -74,7 +74,7 @@ class DynamicPoolAllocator : public AbstractAllocator<T>
|
|
template<typename T>
|
|
class Mat
|
|
{
|
|
- template<typename OT, typename Alloc> friend class MatrixCalc;
|
|
+ template<typename OT, typename Alloc> friend class ::MatrixCalc;
|
|
template<typename OT> friend Mat<OT> operator+(Mat<OT> const& m1, Mat<OT> const& m2);
|
|
template<typename OT> friend Mat<OT> operator-(Mat<OT> const& m1, Mat<OT> const& m2);
|
|
template<typename OT> friend Mat<OT> operator*(Mat<OT> const& m1, Mat<OT> const& m2);
|
|
|