Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Sep 2018 11:26:48 +0000 (UTC)
From:      Li-Wen Hsu <lwhsu@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r479594 - head/devel/ppl/files
Message-ID:  <201809121126.w8CBQmJk015046@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lwhsu
Date: Wed Sep 12 11:26:48 2018
New Revision: 479594
URL: https://svnweb.freebsd.org/changeset/ports/479594

Log:
  Fix build on -CURRENT by pulling [1] in
  
  [1] http://www.cs.unipr.it/git/gitweb.cgi?p=ppl%2Fppl.git;a=commitdiff_plain;h=c39f6a07b51f89e365b05ba4147aa2aa448febd7;hp=3a5e1e20a94cffb830182f22132b153d6691b7c5
  
  Submitted by:	Dmitrii Pasechnik <dimpase@gmail.com>

Added:
  head/devel/ppl/files/
  head/devel/ppl/files/patch-src_Determinate__inlines.hh   (contents, props changed)
  head/devel/ppl/files/patch-src_OR__Matrix__inlines.hh   (contents, props changed)

Added: head/devel/ppl/files/patch-src_Determinate__inlines.hh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ppl/files/patch-src_Determinate__inlines.hh	Wed Sep 12 11:26:48 2018	(r479594)
@@ -0,0 +1,13 @@
+--- src/Determinate_inlines.hh.orig	2016-02-11 12:31:26 UTC
++++ src/Determinate_inlines.hh
+@@ -289,8 +289,8 @@ operator()(Determinate& x, const Determinate& y) const
+ 
+ template <typename PSET>
+ template <typename Binary_Operator_Assign>
+-inline
+-Determinate<PSET>::Binary_Operator_Assign_Lifter<Binary_Operator_Assign>
++inline typename
++Determinate<PSET>::template Binary_Operator_Assign_Lifter<Binary_Operator_Assign>
+ Determinate<PSET>::lift_op_assign(Binary_Operator_Assign op_assign) {
+   return Binary_Operator_Assign_Lifter<Binary_Operator_Assign>(op_assign);
+ }

Added: head/devel/ppl/files/patch-src_OR__Matrix__inlines.hh
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/ppl/files/patch-src_OR__Matrix__inlines.hh	Wed Sep 12 11:26:48 2018	(r479594)
@@ -0,0 +1,11 @@
+--- src/OR_Matrix_inlines.hh.orig	2016-02-11 12:31:26 UTC
++++ src/OR_Matrix_inlines.hh
+@@ -97,7 +97,7 @@ OR_Matrix<T>::Pseudo_Row<U>::Pseudo_Row(const Pseudo_R
+ 
+ template <typename T>
+ template <typename U>
+-inline OR_Matrix<T>::Pseudo_Row<U>&
++inline typename OR_Matrix<T>::template Pseudo_Row<U>&
+ OR_Matrix<T>::Pseudo_Row<U>::operator=(const Pseudo_Row& y) {
+   first = y.first;
+ #if PPL_OR_MATRIX_EXTRA_DEBUG



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809121126.w8CBQmJk015046>