Skip to content
Snippets Groups Projects
Commit 435c8d91 authored by Matthieu Schaller's avatar Matthieu Schaller Committed by Peter W. Draper
Browse files

Undo change to avoid GCC 5.2 signed issues.

(cherry picked from commit 7131dc13 on master)
parent d052d9cc
No related branches found
No related tags found
1 merge request!52Cleaning up of the main file
...@@ -492,8 +492,8 @@ void parts_sort(struct part *parts, struct xpart *xparts, int *ind, int N, ...@@ -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; unsigned int qstack_size = 2 * (max - min) + 10;
volatile unsigned int first, last, waiting; volatile unsigned int first, last, waiting;
unsigned int pivot; int pivot;
unsigned int i, ii, j, jj, temp_i, qid; int i, ii, j, jj, temp_i, qid;
struct part temp_p; struct part temp_p;
struct xpart temp_xp; struct xpart temp_xp;
...@@ -636,8 +636,8 @@ void gparts_sort(struct gpart *gparts, int *ind, int N, int min, int max) { ...@@ -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; int qstack_size = 2 * (max - min) + 10;
volatile unsigned int first, last, waiting; volatile unsigned int first, last, waiting;
unsigned int pivot; int pivot;
unsigned int i, ii, j, jj, temp_i, qid; int i, ii, j, jj, temp_i, qid;
struct gpart temp_p; struct gpart temp_p;
/* for ( int k = 0 ; k < N ; k++ ) /* 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