Changeset 4821

Show
Ignore:
Timestamp:
06/25/09 16:13:16 (5 months ago)
Author:
buntinas
Message:

removing restrict from parameters. Should fix #680

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • mpich2/trunk/src/include/mpiimpl.h

    r4718 r4821  
    109109   before including mpidpre.h so that it can be used when a device or 
    110110   channel can use it if it's overriding MPIU_Memcpy.  */ 
    111 static inline void MPIUI_Memcpy(void * restrict dst, const void * restrict src, size_t len) 
     111static inline void MPIUI_Memcpy(void * dst, const void * src, size_t len) 
    112112{ 
    113113    memcpy(dst, src, len);