X-Git-Url: https://www.ginac.de/ginac.git//ginac.git?p=ginac.git;a=blobdiff_plain;f=check%2Fparser_bugs.cpp;h=7fceb853215b6346f2378a0958c6d7251a72ab9b;hp=af32c5ef89c81548eea433f16d9bd7ab882ed046;hb=0b985d5336debdd396f0fbeca8df850af5f569f4;hpb=a377cee53b71348235ec36f83afeced7e10288a8 diff --git a/check/parser_bugs.cpp b/check/parser_bugs.cpp index af32c5ef..7fceb853 100644 --- a/check/parser_bugs.cpp +++ b/check/parser_bugs.cpp @@ -1,10 +1,32 @@ -/// @file parser_a_b.cpp Check for some silly bugs in the parser. +/** @file parser_bugs.cpp + * + * Check for some silly bugs in the 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 "ginac.h" -#include +using namespace GiNaC; + #include -#include #include -using namespace GiNaC; +#include +#include // - a - b was misparsed as -a + b due to a bug in parser::parse_unary_expr() static int check1(std::ostream& err_str) @@ -91,4 +113,3 @@ int main(int argc, char** argv) } return errors; } -