if (dealii::Utilities::MPI::this_mpi_process == 0)
[...]
warning: the address of ‘unsigned int dealii::Utilities::MPI::this_mpi_process(MPI_Comm)’ will never be NULL

You need to say
  Utilities::MPI::this_mpi_process()
instead of
  Utilities::MPI::this_mpi_process
The former calls the function. The latter takes the address of the function.

Best
 W.

--
The deal.II project is located at http://www.dealii.org/
For mailing list/forum options, see 
https://groups.google.com/d/forum/dealii?hl=en
--- You received this message because you are subscribed to the Google Groups "deal.II User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to dealii+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/dealii/d3a9ebe1-c276-45ee-8fa1-06eca1f409db%40colostate.edu.

Reply via email to