correct function prototypes

This commit is contained in:
Axel Kohlmeyer
2021-12-30 23:48:42 -05:00
parent e6e9aed385
commit ca3be99e77
2 changed files with 6 additions and 6 deletions

View File

@ -226,7 +226,7 @@ namespace utils {
* \param lmp pointer to top-level LAMMPS class instance
* \return double precision floating point number */
double inumeric(const char *file, int line, const char *str, bool do_abort, LAMMPS *lmp);
int inumeric(const char *file, int line, const char *str, bool do_abort, LAMMPS *lmp);
/*! Convert a string to an integer number while checking
* if it is a valid integer number (bigint)
@ -249,7 +249,7 @@ namespace utils {
* \param lmp pointer to top-level LAMMPS class instance
* \return double precision floating point number */
double bnumeric(const char *file, int line, const char *str, bool do_abort, LAMMPS *lmp);
bigint bnumeric(const char *file, int line, const char *str, bool do_abort, LAMMPS *lmp);
/*! Convert a string to an integer number while checking
* if it is a valid integer number (tagint)
@ -272,7 +272,7 @@ namespace utils {
* \param lmp pointer to top-level LAMMPS class instance
* \return double precision floating point number */
double tnumeric(const char *file, int line, const char *str, bool do_abort, LAMMPS *lmp);
tagint tnumeric(const char *file, int line, const char *str, bool do_abort, LAMMPS *lmp);
/*! Compute index bounds derived from a string with a possible wildcard
*