/* * lists.cpp * * Created on: Feb 24, 2010 * Author: crueger */ #include "lists.hpp" #include "World.hpp" #include "atom.hpp" // specialized templates for lists // can be directly compiled since no further templatization is needed template <> void removewithoutcheck(atom *walker) { if (walker != 0) { unlink(walker); walker->getWorld()->destroyAtom(walker); walker = 0; } };