summaryrefslogtreecommitdiff
path: root/src/mongo/base/parse_number.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-7143 replace standard library number parsing with custom NumberParserNathan Brown2019-06-271-21/+84
|
* SERVER-39560 - remove leading blank line on all C++ filesBilly Donahue2019-02-131-1/+0
| | | | | | Remove leading comments that are just stating the filename. Move any file-level comments below the copyright banner. Remove leading blank lines.
* SERVER-37651 Update header files with new licenseRamon Fernandez2018-10-221-14/+17
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-23/+23
|
* SERVER-17736 Remove obsolete C++ driver symbol export miscellaneaAndrew Morrow2015-03-261-2/+1
|
* SERVER-16940 Change pass-by-const-ref of StringData to pass-by-valueTyler Brock2015-02-061-2/+2
|
* SERVER-13256: Remove pch - qualify std in headersMark Benvenuto2014-05-191-1/+1
|
* SERVER-13264 Move Apache-licensed files to AGPLIan Whalen2014-05-161-9/+21
| | | | Also update generators.
* SERVER-3364 Label rest of client api with MONGO_CLIENT_APIRanjay Krishna2013-12-281-1/+2
| | | | | | build all the sharedclient programs using the new macro MONGO_CLIENT_API in mongo/client/export_macros.h Signed-off-by: Matt Kangas <matt.kangas@mongodb.com>
* Implement parseNumberFromString directly, rather than through strtol, and ↵Andy Schwerin2012-12-071-26/+4
| | | | support StringData.
* parseNumberFromString* functionsAndy Schwerin2012-09-251-0/+74
A uniform interface for parsing numbers out of strings, with implementations for the standard integer types. Extension to double should be straightforward. Tests included.