Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
435c8d91
Commit
435c8d91
authored
Oct 27, 2015
by
Matthieu Schaller
Committed by
Peter W. Draper
Oct 27, 2015
Browse files
Undo change to avoid GCC 5.2 signed issues.
(cherry picked from commit
7131dc13
on master)
parent
d052d9cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/space.c
View file @
435c8d91
...
...
@@ -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
;
unsigned
int
pivot
;
unsigned
int
i
,
ii
,
j
,
jj
,
temp_i
,
qid
;
int
pivot
;
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
;
unsigned
int
pivot
;
unsigned
int
i
,
ii
,
j
,
jj
,
temp_i
,
qid
;
int
pivot
;
int
i
,
ii
,
j
,
jj
,
temp_i
,
qid
;
struct
gpart
temp_p
;
/* for ( int k = 0 ; k < N ; k++ )
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment