Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
abc
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
abc
Commits
3f525b0d
Commit
3f525b0d
authored
Feb 24, 2012
by
Alan Mishchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Silenced a gcc warning.
parent
b4fe108d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/misc/vec/vecInt.h
+3
-3
src/misc/vec/vecWrd.h
+1
-1
No files found.
src/misc/vec/vecInt.h
View file @
3f525b0d
...
...
@@ -1131,7 +1131,7 @@ static inline void Vec_IntSort( Vec_Int_t * p, int fReverse )
SeeAlso []
***********************************************************************/
static
void
Vec_IntUniqify
(
Vec_Int_t
*
p
)
static
inline
void
Vec_IntUniqify
(
Vec_Int_t
*
p
)
{
int
i
,
k
;
if
(
p
->
nSize
<
2
)
...
...
@@ -1154,7 +1154,7 @@ static void Vec_IntUniqify( Vec_Int_t * p )
SeeAlso []
***********************************************************************/
static
int
Vec_IntSortCompareUnsigned
(
unsigned
*
pp1
,
unsigned
*
pp2
)
static
in
line
in
t
Vec_IntSortCompareUnsigned
(
unsigned
*
pp1
,
unsigned
*
pp2
)
{
if
(
*
pp1
<
*
pp2
)
return
-
1
;
...
...
@@ -1353,7 +1353,7 @@ static inline int Vec_IntCompareVec( Vec_Int_t * p1, Vec_Int_t * p2 )
SeeAlso []
***********************************************************************/
static
void
Vec_IntAppend
(
Vec_Int_t
*
vVec1
,
Vec_Int_t
*
vVec2
)
static
inline
void
Vec_IntAppend
(
Vec_Int_t
*
vVec1
,
Vec_Int_t
*
vVec2
)
{
int
Entry
,
i
;
Vec_IntForEachEntry
(
vVec2
,
Entry
,
i
)
...
...
src/misc/vec/vecWrd.h
View file @
3f525b0d
...
...
@@ -1010,7 +1010,7 @@ static inline void Vec_WrdSort( Vec_Wrd_t * p, int fReverse )
SeeAlso []
***********************************************************************/
static
void
Vec_WrdUniqify
(
Vec_Wrd_t
*
p
)
static
inline
void
Vec_WrdUniqify
(
Vec_Wrd_t
*
p
)
{
int
i
,
k
;
if
(
p
->
nSize
<
2
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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