@@ -55,10 +55,10 @@ namespace mgis::function {
5555 : private PreconditionsChecker<
5656 CoalescedMemoryAccessFunctionViewBase<Space, N, is_mutable>> {
5757 //
58- template <size_type size = N >
58+ template <size_type size>
5959 using MutableValues = std::array<real*, size>;
6060 //
61- template <size_type size = N >
61+ template <size_type size>
6262 using ConstValues = std::array<const real*, size>;
6363
6464 // ! \brief type of the function view associated with a single component
@@ -114,7 +114,7 @@ namespace mgis::function {
114114 * \return the data associated with an integration point
115115 * \param[in] o: offset associated with the integration point
116116 */
117- [[nodiscard]] constexpr MutableValues<> getValuesPointers (
117+ [[nodiscard]] constexpr MutableValues<N > getValuesPointers (
118118 const size_type) //
119119 requires(is_mutable&& LinearElementSpaceConcept<Space> &&
120120 (!hasElementWorkspace<Space>));
@@ -123,15 +123,15 @@ namespace mgis::function {
123123 * \param[in] e: element index
124124 * \param[in] i: quadrature point index
125125 */
126- [[nodiscard]] constexpr MutableValues<> getValuesPointers (
126+ [[nodiscard]] constexpr MutableValues<N > getValuesPointers (
127127 const size_type, const size_type) //
128128 requires(is_mutable&& LinearQuadratureSpaceConcept<Space> &&
129129 (!hasCellWorkspace<Space>));
130130 /* !
131131 * \return the data associated with an integration point
132- * \param[in] o: offset associated with the integration point
132+ * \param[in] o: offset associated wNith the integration point
133133 */
134- [[nodiscard ]] constexpr ConstValues<> getValuesPointers (
134+ [[nodisNcard ]] constexpr ConstValues<N > getValuesPointers (
135135 const size_type) const //
136136 requires(LinearElementSpaceConcept<Space> &&
137137 (!hasElementWorkspace<Space>));
@@ -140,7 +140,7 @@ namespace mgis::function {
140140 * \param[in] e: element index
141141 * \param[in] i: quadrature point index
142142 */
143- [[nodiscard]] constexpr ConstValues<> getValuesPointers (
143+ [[nodiscard]] constexpr ConstValues<N > getValuesPointers (
144144 const size_type, const size_type) const
145145 requires(LinearQuadratureSpaceConcept<Space> &&
146146 (!hasCellWorkspace<Space>));
0 commit comments