Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions include/aspect/plugins.h
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,13 @@ namespace aspect
}



// Add definition for plugins member:
template <typename InterfaceClass>
std::list<typename PluginList<InterfaceClass>::PluginInfo> *PluginList<InterfaceClass>::plugins = nullptr;



/**
* A placeholder class that is used wherever we need a PluginList object
* for `dim==0` and `dim==1`, which of course are not dimensions we
Expand Down
1 change: 1 addition & 0 deletions source/plugins.cc
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,6 @@ namespace aspect
void
InterfaceBase::load (const std::map<std::string,std::string> &)
{}

}
}
Loading