Number of commits found: 5
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.1.2 13 Dec 2024 23:26:16 |
Dimitry Andric (dim) |
math/dgl: fix build with clang 19
Clang 19 now implements CWG 96 [1], which requires a template argument
list after a 'template' keyword, resulting in errors similar to:
/wrkdirs/usr/ports/math/dgl/work/dgl-1.1.2/third_party/tensorpipe/third_party/libnop/include/nop/types/variant.h:241:30:
error: a template argument list is expected after a name prefixed by the
template keyword [-Wmissing-template-arg-list-after-template-kw]
241 | index_ = value_.template Construct(std::forward<Args>(args)...);
| ^
/wrkdirs/usr/ports/math/dgl/work/dgl-1.1.2/third_party/tensorpipe/third_party/libnop/include/nop/types/variant.h:258:26:
error: a template argument list is expected after a name prefixed by the
template keyword [-Wmissing-template-arg-list-after-template-kw]
258 | if (!value_.template Assign(TypeTag<T>{}, index_,
std::forward<U>(value))) {
| ^
/wrkdirs/usr/ports/math/dgl/work/dgl-1.1.2/third_party/tensorpipe/third_party/libnop/include/nop/types/variant.h:265:26:
error: a template argument list is expected after a name prefixed by the
template keyword [-Wmissing-template-arg-list-after-template-kw]
265 | if (!value_.template Assign(index_, std::forward<T>(value))) {
| ^
In all these cases, appending "<>" is enough to satisfy the constraint.
[1] https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#96
PR: 282949
Approved by: maintainer timeout (2 weeks)
MFH: 2024Q4 |
1.1.2 27 Mar 2024 07:32:03 |
Yuri Victorovich (yuri) |
math/dgl: update 1.1.1 → 1.1.2
Reported by: portscout |
1.1.1 06 Dec 2023 18:13:24 |
Yuri Victorovich (yuri) |
math/dgl: Fix build
Some headers or paths of the project require C++17, but the top-level
CMakeLists.txt was setting C++14. |
1.1.1 21 Jul 2023 08:03:09 |
Yuri Victorovich (yuri) |
math/dgl: Update 1.1.0 → 1.1.1
Reported by: portscout |
1.1.0 10 May 2023 04:21:01 |
Yuri Victorovich (yuri) |
math/dgl: New port: Deep Graph Library |
Number of commits found: 5
|