Fixes a "copy over" bug in input3.c

The copying of one input line token over another was causing a compilation error under Clang. With v2.2 this copying is no longer needed so the line of code in question was simply deleted.

This commit also deletes the HTML and Latex output generated by running Doxygen that got added from the previous update to dev since they don't really belong in a source code repo.
This commit is contained in:
Lew Rossman
2019-11-29 15:56:33 -05:00
parent c16c861789
commit 3935247e2b
186 changed files with 2 additions and 22399 deletions

View File

@@ -7,7 +7,7 @@ Description: parses network data from a line of an EPANET input file
Authors: see AUTHORS
Copyright: see AUTHORS
License: see LICENSE
Last Updated: 11/15/2019
Last Updated: 11/29/2019
******************************************************************************
*/
@@ -1171,9 +1171,6 @@ int reactdata(Project *pr)
else if (match(parser->Tok[0], w_TANK)) item = 3;
else return setError(parser, 0, 213);
// Save the first link/node ID in the first token
strcpy(parser->Tok[0], parser->Tok[1]);
// Case where tank rate coeffs. are being set
if (item == 3)
{