Skip to content

Commit

Permalink
Only include RHS if using reactions
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpkatz committed Apr 20, 2020
1 parent 3068949 commit 5d868e8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions interfaces/network_initialization.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
#include <actual_network.H>
#ifdef REACTIONS
#include <actual_rhs.H>
#endif

void network_init()
{
actual_network_init();
#ifdef REACTIONS
actual_rhs_init();
#endif
}

0 comments on commit 5d868e8

Please sign in to comment.