Skip to content
Snippets Groups Projects
Commit f212fab4 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix few warnings

parent 976f4a89
Branches
Tags
1 merge request!11Feature/mpi
...@@ -105,7 +105,7 @@ endif() ...@@ -105,7 +105,7 @@ endif()
if (${MPI_FOUND}) if (${MPI_FOUND})
set(PASTIS_CXX_FLAGS "${PASTIS_CXX_FLAGS} ${MPI_CXX_COMPILER_FLAGS}") set(PASTIS_CXX_FLAGS "${PASTIS_CXX_FLAGS} ${MPI_CXX_COMPILER_FLAGS}")
include_directories(${MPI_CXX_INCLUDE_DIRS}) include_directories(SYSTEM ${MPI_CXX_INCLUDE_DIRS})
elseif(PASTIS_ENABLE_MPI STREQUAL "ON") elseif(PASTIS_ENABLE_MPI STREQUAL "ON")
message(FATAL_ERROR "Could not find MPI library while requested") message(FATAL_ERROR "Could not find MPI library while requested")
endif() endif()
......
...@@ -164,7 +164,7 @@ private: ...@@ -164,7 +164,7 @@ private:
int i; int i;
m_fin >> i; m_fin >> i;
return std::move(i); return i;
} }
double _getReal() double _getReal()
...@@ -172,7 +172,7 @@ private: ...@@ -172,7 +172,7 @@ private:
double d; double d;
m_fin >> d; m_fin >> d;
return std::move(d); return d;
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment