diff --git a/branches/ParadisEO-GPU/src/problems/types/moGPUCustomizeType.h b/branches/ParadisEO-GPU/src/problems/types/moGPUCustomizeType.h index 1c34b3a2c..2e068badf 100644 --- a/branches/ParadisEO-GPU/src/problems/types/moGPUCustomizeType.h +++ b/branches/ParadisEO-GPU/src/problems/types/moGPUCustomizeType.h @@ -40,7 +40,7 @@ */ template -typedef struct sol2Type { +struct sol2Type { T1 tab1[SIZE]; T2 tab2[SIZE]; @@ -59,10 +59,11 @@ inline __host__ __device__ unsigned size() { return SIZE; } -}Type2; +}; + template -typedef struct sol3Type { +struct sol3Type { T1 tab1[SIZE]; T2 tab2[SIZE]; @@ -84,10 +85,10 @@ inline __host__ __device__ unsigned size() { return SIZE; } -}Type3; +}; template -typedef struct sol4Type { +struct sol4Type { T1 tab1[SIZE]; T2 tab2[SIZE]; @@ -110,6 +111,6 @@ inline __host__ __device__ unsigned size() { return SIZE; } -}Type4; +}; #endif