Skip to content

Commit 27412c7

Browse files
Merge pull request #1811 from arcaneframework/dev/gg-fix-compilation-with-clang
Fix compilation with clang
2 parents c9165e2 + a061400 commit 27412c7

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

arcane/src/arcane/utils/PlatformUtils.h

+10-9
Original file line numberDiff line numberDiff line change
@@ -270,9 +270,9 @@ IMemoryAllocator* getAcceleratorHostMemoryAllocator();
270270
*
271271
* \deprecated Cette méthode est interne à Arcane.
272272
*/
273-
extern "C++" ARCANE_UTILS_EXPORT
274-
ARCANE_DEPRECATED_REASON("Y2024: This method is internal to Arcane")
275-
IMemoryAllocator* setAcceleratorHostMemoryAllocator(IMemoryAllocator* a);
273+
extern "C++" ARCANE_DEPRECATED_REASON("Y2024: This method is internal to Arcane")
274+
ARCANE_UTILS_EXPORT IMemoryAllocator*
275+
setAcceleratorHostMemoryAllocator(IMemoryAllocator* a);
276276

277277
/*---------------------------------------------------------------------------*/
278278
/*---------------------------------------------------------------------------*/
@@ -302,9 +302,10 @@ getDefaultDataAllocator();
302302
*
303303
* * \deprecated Cette méthode est interne à Arcane.
304304
*/
305-
extern "C++" ARCANE_UTILS_EXPORT
306-
ARCANE_DEPRECATED_REASON("Y2024: This method is internal to Arcane")
307-
IMemoryRessourceMng* setDataMemoryRessourceMng(IMemoryRessourceMng* mng);
305+
extern "C++" ARCANE_DEPRECATED_REASON("Y2024: This method is internal to Arcane")
306+
ARCANE_UTILS_EXPORT IMemoryRessourceMng*
307+
setDataMemoryRessourceMng(IMemoryRessourceMng* mng);
308+
308309

309310
/*---------------------------------------------------------------------------*/
310311
/*---------------------------------------------------------------------------*/
@@ -316,9 +317,9 @@ IMemoryRessourceMng* setDataMemoryRessourceMng(IMemoryRessourceMng* mng);
316317
*
317318
* \deprecated Cette méthode est interne à Arcane.
318319
*/
319-
extern "C++" ARCANE_UTILS_EXPORT
320-
ARCANE_DEPRECATED_REASON("Y2024: This method is internal to Arcane. Use methods from MemoryUtils instead.")
321-
IMemoryRessourceMng* getDataMemoryRessourceMng();
320+
extern "C++" ARCANE_DEPRECATED_REASON("Y2024: This method is internal to Arcane. Use methods from MemoryUtils instead.")
321+
ARCANE_UTILS_EXPORT IMemoryRessourceMng*
322+
getDataMemoryRessourceMng();
322323

323324
/*---------------------------------------------------------------------------*/
324325
/*---------------------------------------------------------------------------*/

0 commit comments

Comments
 (0)