Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Podhorszki, Norbert
ADIOS2
Commits
6305992f
Commit
6305992f
authored
Mar 03, 2020
by
Nick
Browse files
Remove unused variable warning when MPI is disabled.
parent
572da9b8
Changes
1
Hide whitespace changes
Inline
Side-by-side
testing/adios2/engine/bp/TestBPNoXMLRecovery.cpp
View file @
6305992f
...
...
@@ -9,8 +9,8 @@
int
main
(
int
argc
,
char
*
argv
[])
{
int
rank
=
0
;
int
size
=
1
;
#ifdef ADIOS2_HAVE_MPI
int
size
=
1
;
MPI_Init
(
&
argc
,
&
argv
);
MPI_Comm_rank
(
MPI_COMM_WORLD
,
&
rank
);
MPI_Comm_size
(
MPI_COMM_WORLD
,
&
size
);
...
...
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