Skip to content

Commit a09a043

Browse files
committed
Fix build error with clang
1 parent 8dbbf1e commit a09a043

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dash/include/dash/Onesided.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ void fence_local(
176176
* \nonblocking
177177
*/
178178
template<typename T, typename GlobPtrType>
179-
constexpr
179+
inline
180180
void put_value_async(
181181
/// [IN] Value to set
182182
const T & newval,
@@ -193,7 +193,7 @@ void put_value_async(
193193
* \nonblocking
194194
*/
195195
template<typename T, typename GlobPtrType>
196-
constexpr
196+
inline
197197
void get_value_async(
198198
/// [OUT] Local pointer that will contain the value of the
199199
/// global address
@@ -210,7 +210,7 @@ void get_value_async(
210210
* \blocking
211211
*/
212212
template<typename T, typename GlobPtrType>
213-
constexpr
213+
inline
214214
void put_value(
215215
/// [IN] Value to set
216216
const T & newval,
@@ -226,7 +226,7 @@ void put_value(
226226
* \blocking
227227
*/
228228
template<typename T, typename GlobPtrType>
229-
constexpr
229+
inline
230230
void get_value(
231231
/// [OUT] Local pointer that will contain the value of the
232232
/// global address

0 commit comments

Comments
 (0)