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:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user