Skip to content
Snippets Groups Projects
Commit 18fdb47c authored by Martin Nolte's avatar Martin Nolte
Browse files

split the #if in two conditions

This fixes a compiler error, if USE_SIONLIB is undefined.
parent 516bd3ea
No related branches found
No related tags found
No related merge requests found
#ifndef DUNE_FEM_DG_STREAMS_HH
#define DUNE_FEM_DG_STREAMS_HH
#if HAVE_SIONLIB && USE_SIONLIB
#if HAVE_SIONLIB
#if USE_SIONLIB
#warning "using SIONlib streams for output"
#include <dune/fem/io/streams/sionlibstreams.hh>
namespace Dune {
namespace Dune
{
struct PersistenceManagerTraits
{
......@@ -15,7 +18,9 @@ namespace Dune {
};
#define FEM_PERSISTENCEMANAGERSTREAMTRAITS PersistenceManagerTraits
}
#endif // #if HAVE_SIONLIB && USE_SIONLIB
} // namespace Dune
#endif // #if USE_SIONLIB
#endif // #if HAVE_SIONLIB
#endif // #ifndef DUNE_FEM_DG_STREAMS_HH
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