Skip to content
Snippets Groups Projects
Commit 0950ccea authored by mattijs's avatar mattijs
Browse files

COMP: LList: make constructor explicit. Fixes #630.

parent d2fa70c5
Branches
Tags
No related merge requests found
......@@ -110,13 +110,13 @@ public:
{}
//- Construct given initial T
LList(T a)
explicit LList(T a)
:
LListBase(new link(a))
{}
//- Construct from Istream
LList(Istream&);
explicit LList(Istream&);
//- Construct as copy
LList(const LList<LListBase, T>&);
......
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