src/types/IntegerDataTypeWriter.h
branchv_0
changeset 54 d9c68ac8929e
parent 45 27d5335cd924
equal deleted inserted replaced
53:653e3b154191 54:d9c68ac8929e
    57 		} while (more);
    57 		} while (more);
    58 	}
    58 	}
    59 
    59 
    60 	integer_t toValue(const string_t &stringValue) override {
    60 	integer_t toValue(const string_t &stringValue) override {
    61 		// throws „terminate called after throwing an instance of 'std::invalid_argument'“ SIGABRT, core dumped on invalid number
    61 		// throws „terminate called after throwing an instance of 'std::invalid_argument'“ SIGABRT, core dumped on invalid number
    62 		return stol(stringValue);
    62 		return stoll(stringValue);
    63 	}
    63 	}
    64 
    64 
    65 };
    65 };
    66 
    66 
    67 }
    67 }