Remove const from pointers in t_filenm.
authorM. Eric Irrgang <ericirrgang@gmail.com>
Fri, 7 Sep 2018 11:11:50 +0000 (14:11 +0300)
committerM. Eric Irrgang <ericirrgang@gmail.com>
Mon, 10 Sep 2018 09:41:04 +0000 (11:41 +0200)
commit9b7455349ef14bad261c10e13aa240819f186a12
treed3c71ccc99d438172d5e62314d69dae1f4fc0889
parent2a77c0b979ac2c9f87e03743eaec648a63358eb1
Remove const from pointers in t_filenm.

The const char pointer members of t_filenm were themselves const,
restricting the ability of t_filenm objects to be assigned or passed
by value. If the pointer members should not be updated, the variable
holding the t_filenm object can be marked const, so this change removes
the const-ness of the pointer members.

Change-Id: I1c405b390c5399604cf66ca5818fdac630ffde8e
src/gromacs/commandline/filenm.h