summaryrefslogtreecommitdiff
path: root/src/utils.cc
Commit message (Collapse)AuthorAgeFilesLines
* Avoid ctype abuse.Taylor R Campbell2024-08-061-1/+1
| | | | | fix https://github.com/ledger/ledger/issues/2338 fix https://github.com/ledger/ledger/issues/2340
* Introduce ledger.hhAlexis Hildebrandt2023-04-161-1/+1
|
* Use #cmakedefine01 for system capability checksAlexis Hildebrandt2023-04-151-3/+3
| | | | and reply #ifdev HAVE_ with #if HAVE_
* Bump required Boost version to 1.72Alexis Hildebrandt2023-03-241-4/+0
|
* Fix compiler warningsAlexis Hildebrandt2023-02-201-0/+4
| | | | minimizing use of deprecated API where possible.
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2018-01-271-1/+1
| | | | [ci skip]
* [misc] Update year in copyright notice to 2017Alexis Hildebrandt2017-01-051-1/+1
| | | | [ci skip]
* Fix build under msys32; add Appveyor continuous buildEvan Mallory2016-09-171-2/+2
| | | | | | | | | | | | * Appveyor is a continuous integration platform for Windows that is free for open source projects. See latest test build here: https://ci.appveyor.com/project/Evan/ledger/build/artifacts * Changed WIN32 to _WIN32 because this article http://nadeausoftware.com/articles/2012/01/c_c_tip_how_use_compiler_predefined_macros_detect_operating_system claims that it is defined by the greatest number of compilers. * Modified HAVE_ISATTY and other system defines so that system.hh compiles when cmake fails to find the relevant function. * Add missing include in test/unit/t_value.cc Almost all tests fail when you run them on msys32. I will address that in a future PR.
* [misc] Update year in copyright notice to 2016Alexis Hildebrandt2016-01-021-1/+1
| | | | [ci skip]
* Bump copyright notice to 2015Alexis Hildebrandt2014-12-271-1/+1
| | | | | | The following script makes it a no-brainer: % NEXT_YEAR=2015; ag -l 'Copyright.*Wiegley' \ | xargs sed -i '' -e "s/\(Copyright.*\)-20[0-9]\{2\}/\1-${NEXT_YEAR}/"
* Fix crash when using --trace 10 or aboveAlexis Hildebrandt2014-12-231-1/+1
| | | | | uint8_t is typedef'd to char, thus boost::lexical_cast treats it as such instead of a number.
* Fix build for building with g++ 4.8John Wiegley2014-05-071-0/+8
|
* Bump copyright information to 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Resolve new compiler warnings from ClangJohn Wiegley2013-05-191-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* Don't use __has_feature in utils.ccJohn Wiegley2012-08-021-4/+4
|
* Guard some function definitions for ASanJohn Wiegley2012-07-301-0/+8
|
* Changed all ASSERTS_ON -> !NO_ASSERTSJohn Wiegley2012-05-201-1/+1
|
* Work around collision between Format's put & GraphJohn Wiegley2012-05-201-40/+0
|
* Converted the Ledger build system to use CMakeJohn Wiegley2012-05-201-22/+20
|
* Switch to using Boost.FormatJohn Wiegley2012-05-141-3/+3
|
* Added support for building with Clang and libc++ in C++11John Wiegley2012-04-281-2/+2
|
* Always call TRACE_CTOR at the end of constructorsJohn Wiegley2012-03-201-5/+7
|
* Added --verify-memory and missing TRACE_[CD]TOR callsJohn Wiegley2012-03-181-26/+84
|
* Guarded against unreachable code warningsJohn Wiegley2012-03-111-3/+0
|
* Started writing Python unit testsJohn Wiegley2012-03-011-2/+1
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Made the --debug option's argument a regexJohn Wiegley2012-02-281-1/+6
|
* Added --rich-data for 'convert', and SHA1 checksum checkingJohn Wiegley2012-02-261-2/+2
|
* Do not evaluate strings as booleansJohn Wiegley2012-02-111-1/+1
|
* Fixed compiler warnings when building with ClangJohn Wiegley2011-02-041-3/+1
|
* Untabified all source filesJohn Wiegley2010-06-111-49/+49
|
* Corrections to the way error strings are generatedJohn Wiegley2010-06-101-0/+2
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Fixed some debug outputJohn Wiegley2009-11-131-0/+5
|
* Use ledger::string only if VERIFY_ON or BOOST_PYTHONJohn Wiegley2009-11-111-0/+4
|
* All strings passed to Python are now Unicode objectsJohn Wiegley2009-11-101-11/+13
|
* std::string now only intercepted if STRING_VERIFY_ONJohn Wiegley2009-11-051-0/+4
|
* Disabled a memory check when --verify is onJohn Wiegley2009-10-281-0/+7
| | | | The check is not complete enough to be trustworthy.
* Added TRUE_CURRENT_TIME() macroJohn Wiegley2009-10-281-6/+7
| | | | Because CURRENT_TIME() can now be a past date if --now is used.
* Improved argument parsing logic used by the REPLJohn Wiegley2009-10-261-0/+53
| | | | | It now handles quoted strings, although it doesn't understand escape sequences yet.
* Fixed the memory tracing code (used by --verify)John Wiegley2009-10-251-33/+56
|
* Fixed many compiler warnings from g++ 4.4John Wiegley2009-10-251-8/+10
|
* Enabled use of pre-compiled headers by defaultJohn Wiegley2009-03-101-0/+2
|
* Reduced the #include dependency tree to a minimumJohn Wiegley2009-03-041-1/+3
|
* Added a warning_() macroJohn Wiegley2009-02-261-4/+2
|
* The Great Renaming, Part IIJohn Wiegley2009-02-231-1/+1
| | | | | The last commit did not contain the majority of changes because of a slight mishap. This contains the real changeset.
* Fixed another memory bug in by_payee_xactsJohn Wiegley2009-02-211-6/+12
|