summaryrefslogtreecommitdiff
path: root/src/utils.cc
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Compilation verification code only with debuggingJohn Wiegley2009-02-161-0/+2
| | | | | | Previously, --verify would work even if the sources were built with default options. However, in the interests of performance, --verify is now only available if --enable-debug was passed to configure.
* Fixed several unused value and param warningsJohn Wiegley2009-02-161-2/+2
|
* Added proper handling of SIGINT (C-c) and SIGPIPE (pager quits).John Wiegley2009-02-041-0/+17
|
* Largely removed all of Ledger's use of global variables, for the REPL's sake.John Wiegley2009-02-041-19/+3
|
* Simplified error context handling.John Wiegley2009-02-021-12/+0
|
* Changed many uses of "unsigned long" to std::size_t.John Wiegley2009-02-011-2/+2
|
* Stopped using the generic "unsigned int" in favor of more specific types.John Wiegley2009-01-291-2/+2
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Allow the environment variable LEDGER_DEBUG to enable debugging.John Wiegley2009-01-191-0/+10
|
* The ledger::string type now uses size_type for a length parameter instead ofJohn Wiegley2008-09-141-2/+2
| | | | "const int", which is not portable.
* Re-enabled the disabled expand_path routine.John Wiegley2008-08-171-11/+6
|
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+716
is in doc/, etc.