Skip to content
Snippets Groups Projects
Commit 26c73fef authored by William F Godoy's avatar William F Godoy
Browse files

Working on a few more warnings

parent 582529c3
No related branches found
No related tags found
1 merge request!301Fix Issue #300 reduce CDash warnings and errors
......@@ -91,7 +91,7 @@ int main(int argc, char *argv[])
{
writer.BeginStep();
for (int i = 0; i < Nx; i++)
for (unsigned int i = 0; i < Nx; i++)
{
v1[i] = rank * 1.0 + step * 0.1;
}
......
......@@ -22,7 +22,7 @@ int main(int argc, char *argv[])
unsigned int i;
for (i = 0; i < Nx; ++i)
{
myFloats[i] = i;
myFloats[i] = (float)i;
}
adios2_ADIOS *adiosH = adios2_init_nompi(adios2_debug_mode_on);
......
......@@ -16,6 +16,10 @@
#include "adios2/helper/adiosFunctions.h" //ReadValue<T>
#ifdef _WIN32
#pragma warning(disable : 4503) // Windows complains about SubFileInfoMap levels
#endif
namespace adios2
{
namespace format
......
......@@ -19,6 +19,10 @@
#include "adios2/helper/adiosFunctions.h" //GetType<T>, ReadValue<T>,
// ReduceValue<T>
#ifdef _WIN32
#pragma warning(disable : 4503) // Windows complains about SubFileInfoMap levels
#endif
namespace adios2
{
namespace format
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment