Commit a1b19b0c authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

updated Common

parent 329de370
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -10,8 +10,6 @@
#include <sstream>
#include <regex>
#include <cmath>
#include <limits>

using namespace std;

/**
@@ -87,7 +85,7 @@ public:
            return stoi(lastInt);  // Return the last matched float
        } catch (exception& ignored) {
            cerr << "I could not parse " << lastInt << " into an integer." << endl;
            return numeric_limits<int>::min();
            return NAN;
        }
    }