Commit ffb8eb36 authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

Revert "recognize any word starting with FP as FPRIME style table"

This reverts commit 86f5b511.
parent 26344686
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -578,7 +578,7 @@ void PairTable::param_extract(Table *tb, char *line)
      tb->rlo = atof(word);
      word = strtok(NULL," \t\n\r\f");
      tb->rhi = atof(word);
    } else if (strncmp(word,"FP",2) == 0) {
    } else if (strcmp(word,"FP") == 0) {
      tb->fpflag = 1;
      word = strtok(NULL," \t\n\r\f");
      tb->fplo = atof(word);