Skip to content
Snippets Groups Projects
Commit 0f82d2ce authored by mattijs's avatar mattijs
Browse files

COMP: entry: call base constructor

parent 776ae0a6
No related merge requests found
...@@ -39,12 +39,14 @@ int Foam::entry::disableFunctionEntries ...@@ -39,12 +39,14 @@ int Foam::entry::disableFunctionEntries
Foam::entry::entry(const keyType& keyword) Foam::entry::entry(const keyType& keyword)
: :
IDLList<entry>::link(),
keyword_(keyword) keyword_(keyword)
{} {}
Foam::entry::entry(const entry& e) Foam::entry::entry(const entry& e)
: :
IDLList<entry>::link(),
keyword_(e.keyword_) keyword_(e.keyword_)
{} {}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment