X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=ginac%2Fparser%2Fparser_compat.cpp;h=3678ea8bfd05618b9941ecf7a1cbb5308a9e6837;hp=eede97e668b4192cc1e75131af997ae8e23bd51b;hb=34f23dc638fba5905a1edb3ebcaf99d6eedabf3c;hpb=80b1c3e0ee0e465d56e5c76bef4e52ef2dbc5197 diff --git a/ginac/parser/parser_compat.cpp b/ginac/parser/parser_compat.cpp index eede97e6..3678ea8b 100644 --- a/ginac/parser/parser_compat.cpp +++ b/ginac/parser/parser_compat.cpp @@ -1,19 +1,40 @@ -/// @file parser_compat.cpp Parser interface compatible with the old -/// (bison/flex based) parser. +/** @file parser_compat.cpp + * + * Parser interface compatible with the old (bison/flex based) parser. */ + +/* + * 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 + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + #include "ex.h" #include "idx.h" #include "lst.h" #include "parser.h" -#include + #include +#include + +namespace GiNaC { -namespace GiNaC -{ static symtab make_symtab(const ex& l); ptr ex::construct_from_string_and_lst(const std::string &s, const ex &l) { - static const bool strict = true; + constexpr bool strict = true; symtab syms = make_symtab(l); parser reader(syms, strict); ex parsed_ex = reader(s); @@ -45,5 +66,4 @@ static std::string get_symbol_name(const ex & s) throw (std::invalid_argument("get_symbol_name(): unexpected expression type")); } -} - +} // namespace GiNaC