summaryrefslogtreecommitdiff
path: root/src/error.h
Commit message (Collapse)AuthorAgeFilesLines
* Use #pragma onceAlexis Hildebrandt2023-04-101-4/+1
|
* Update copyright yearAlexis Hildebrandt2023-02-021-1/+1
| | | | [skip ci]
* Update copyright statement for 2022Alexis Hildebrandt2022-07-021-1/+1
|
* Change header guard names to use `INCLUDED_` prefixPhil Newton2022-04-061-3/+3
| | | | Fixes #2049
* Drop support for gcc 2 and earlierTim Landscheidt2019-01-251-5/+5
|
* Merge pull request #540 from scfc/fix-warnings-for-implicit-fallthroughJohn Wiegley2019-01-141-1/+1
|\ | | | | Fix warnings for -Wimplicit-fallthrough
| * Fix warnings for -Wimplicit-fallthroughTim Landscheidt2018-02-191-1/+1
| |
* | Merge remote-tracking branch 'origin/master' into nextJohn Wiegley2018-07-191-2/+3
|\ \ | |/ |/|
| * Ensure that parse errors produce useful RuntimeErrors for Python code.Manuel Amador (Rudd-O)2016-02-061-2/+3
| |
* | [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]
* [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}/"
* Bump copyright information to 2014Alexis Hildebrandt2014-02-021-1/+1
|
* Bump copyright information to 2013John Wiegley2013-02-181-1/+1
|
* Switch to using Boost.FormatJohn Wiegley2012-05-141-14/+6
|
* Started writing Python unit testsJohn Wiegley2012-03-011-0/+6
|
* Increased file copyrights to 2012John Wiegley2012-02-291-1/+1
|
* Untabified all source filesJohn Wiegley2010-06-111-26/+26
|
* Corrections to the way error strings are generatedJohn Wiegley2010-06-101-0/+2
|
* Updated copyrights to 2003-2010John Wiegley2010-03-051-1/+1
|
* Removed a bunch of empty commentsJohn Wiegley2009-11-081-4/+0
|
* Fixed many compiler warnings from g++ 4.4John Wiegley2009-10-251-8/+8
|
* Corrected warnings g++-4.3.3 was complaining aboutJohn Wiegley2009-02-281-4/+4
|
* Added a warning_() macroJohn Wiegley2009-02-261-0/+10
|
* Added a new source_context functionJohn Wiegley2009-02-261-0/+5
|
* Use a "format accumulator" for error stringsJohn Wiegley2009-02-211-3/+12
| | | | | | | | This makes it possible to internationalize strings while still using I/O streams. For example: std::cout << ACCUM(_("Hello to %1 and %2!") << "me" << "you") << std::endl;
* Simplified the textual parser, and improved metadata support.John Wiegley2009-02-041-3/+3
|
* Removed report_error() function and reordered context for parsing errors.John Wiegley2009-02-021-2/+0
|
* Moved error code into error.h.John Wiegley2009-02-021-35/+6
|
* Added documentation stubs for all include files and classes.John Wiegley2009-01-311-0/+14
|
* Correctly report the line context when there is a valexpr parsing error.John Wiegley2009-01-221-8/+22
|
* Increased copyright range to include 2009.John Wiegley2009-01-201-1/+1
|
* Fixed the way that nested caught exceptions are rethrown, and how valueJohn Wiegley2008-09-151-1/+1
| | | | expressions are displayed when errors are found in them.
* Ledger now builds without any significant warnings, except for one file. SomeJohn Wiegley2008-08-101-4/+6
| | | | | of the warnings had to be temporarily disabled, but will be checked again once the code has moved into master.
* Moved around most of the files so that source code is in src/, documentationJohn Wiegley2008-08-051-0/+85
is in doc/, etc.