Skip to content
Snippets Groups Projects
Commit cfe2ace3 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Merge branch 'gcc_52' into 'master'

Minor fix for GCC 5.2

The newer GCC versions are more strict about signed/unsigned correctness and raise warnings.

See merge request !51
parents c123d484 fc380124
No related branches found
No related tags found
No related merge requests found
......@@ -492,8 +492,8 @@ void parts_sort(struct part *parts, struct xpart *xparts, int *ind, int N,
unsigned int qstack_size = 2 * (max - min) + 10;
volatile unsigned int first, last, waiting;
int pivot;
int i, ii, j, jj, temp_i, qid;
unsigned int pivot;
unsigned int i, ii, j, jj, temp_i, qid;
struct part temp_p;
struct xpart temp_xp;
......@@ -636,8 +636,8 @@ void gparts_sort(struct gpart *gparts, int *ind, int N, int min, int max) {
int qstack_size = 2 * (max - min) + 10;
volatile unsigned int first, last, waiting;
int pivot;
int i, ii, j, jj, temp_i, qid;
unsigned int pivot;
unsigned int i, ii, j, jj, temp_i, qid;
struct gpart temp_p;
/* for ( int k = 0 ; k < N ; k++ )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment