Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hqr
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
solverstack
hqr
Merge requests
!10
fix silent warnings and pkgconfig
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix silent warnings and pkgconfig
hotfix
into
master
Overview
0
Commits
3
Pipelines
0
Changes
1
Merged
BOUCHERIE Raphael
requested to merge
hotfix
into
master
7 years ago
Overview
0
Commits
3
Pipelines
0
Changes
1
Expand
Removed useless variable and fixed genhqrpkgconfig
0
0
Merge request reports
Viewing commit
58b2f516
Prev
Next
Show latest version
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
58b2f516
fixed silent warnings
· 58b2f516
BOUCHERIE Raphael
authored
7 years ago
testings/testing_tileinit.c
+
1
−
2
Options
@@ -22,7 +22,6 @@
int
main
(
int
argc
,
char
**
argv
)
{
int
rc
;
libhqr_tree_t
qrtree
;
libhqr_tiledesc_t
matrix
;
@@ -32,7 +31,7 @@ main(int argc, char ** argv)
matrix
.
mt
=
1
;
matrix
.
nt
=
1
;
libhqr_hqr_init
(
&
qrtree
,
LIBHQR_QR
,
&
matrix
,
0
,
0
,
1
,
3
,
0
,
0
);
rc
=
libhqr_tree_check
(
&
matrix
,
&
qrtree
);
if
(
libhqr_tree_check
(
&
matrix
,
&
qrtree
)
)
return
0
;
libhqr_matrix_finalize
(
&
qrtree
);
return
1
;
}
Loading