Skip to content

Commit ee2fc29

Browse files
committed
Fix Issue #207
1 parent 45e8e05 commit ee2fc29

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

docs/web/release-notes-3.1.1.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ The page describes the new functionalities of Version 3.1.1 of the
2727

2828
For more details, see <https://github.com/thelfer/MFrontGenericInterfaceSupport/issues/208>
2929

30+
## Issue 207: [mgis-function] Add support for `nvcc`
31+
32+
For more details, see <https://github.com/thelfer/MFrontGenericInterfaceSupport/issues/207>
33+
3034
## Issue 205: Static library build fails with `TFEL` support
3135

3236
For more details, see <https://github.com/thelfer/MFrontGenericInterfaceSupport/issues/205>

include/MGIS/Function/CoalescedMemoryAccessFunctionViewBase.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace mgis::function {
5050
/*!
5151
*
5252
*/
53-
template <FunctionalSpaceConcept Space, size_type N, bool is_mutable = true>
53+
template <FunctionalSpaceConcept Space, size_type N, bool is_mutable>
5454
requires(N > 0) struct CoalescedMemoryAccessFunctionViewBase
5555
: private PreconditionsChecker<
5656
CoalescedMemoryAccessFunctionViewBase<Space, N, is_mutable>> {

include/MGIS/Function/StridedCoalescedMemoryAccessFunctionViewBase.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ namespace mgis::function {
3737
* +-------++-------++------++-------+----+-------++------++------++-------+
3838
* ~~~~
3939
*/
40-
template <FunctionalSpaceConcept Space, size_type N, bool is_mutable = true>
40+
template <FunctionalSpaceConcept Space, size_type N, bool is_mutable>
4141
requires(N > 0) struct StridedCoalescedMemoryAccessFunctionViewBase
4242
: private PreconditionsChecker<
4343
StridedCoalescedMemoryAccessFunctionViewBase<Space,

0 commit comments

Comments
 (0)