X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fremember.cpp;h=ee62fa0f691777988448dfd7b873c068d88fe9d1;hp=6a280cb43bff0ba136fba207d4d8fc0887035e58;hb=85f46b3d72dbafb6fe1fbb9bca32ec612cf8b480;hpb=695f6ae955ec530cded8f21efd5569df39447f76 diff --git a/ginac/remember.cpp b/ginac/remember.cpp index 6a280cb4..ee62fa0f 100644 --- a/ginac/remember.cpp +++ b/ginac/remember.cpp @@ -4,7 +4,7 @@ * in GiNaC functions */ /* - * GiNaC Copyright (C) 1999-2005 Johannes Gutenberg University Mainz, Germany + * GiNaC Copyright (C) 1999-2015 Johannes Gutenberg University Mainz, Germany * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,15 +18,15 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include - #include "function.h" #include "utils.h" #include "remember.h" +#include + namespace GiNaC { ////////// @@ -113,7 +113,7 @@ void remember_table_list::add_entry(function const & f, ex const & result) } default: throw(std::logic_error("remember_table_list::add_entry(): invalid remember_strategy")); - } + } GINAC_ASSERT(size()==max_assoc_size-1); } push_back(remember_table_entry(f,result)); @@ -183,8 +183,8 @@ void remember_table::init_table() std::vector & remember_table::remember_tables() { - static std::vector * rt = new std::vector; - return *rt; + static std::vector rt = std::vector(); + return rt; } } // namespace GiNaC