diff options
author | Tavian Barnes <tavianator@gmail.com> | 2012-01-01 18:00:22 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2012-01-01 18:10:21 -0500 |
commit | 927a195371a9817e214fb25047e60b216b0acf35 (patch) | |
tree | 1cbc94bcab901fe33dc03df16d077f4521bc000a /libdimension/dimension | |
parent | bf56062df55226e44afb574791dbbe67d3632642 (diff) | |
download | dimension-927a195371a9817e214fb25047e60b216b0acf35.tar.xz |
Print a backtrace on both warnings and errors.
Diffstat (limited to 'libdimension/dimension')
-rw-r--r-- | libdimension/dimension/error.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdimension/dimension/error.h b/libdimension/dimension/error.h index 894899a..0ae349f 100644 --- a/libdimension/dimension/error.h +++ b/libdimension/dimension/error.h @@ -30,14 +30,14 @@ /** * Report a warning. - * @param[in] str A string to print explaining the warning. + * @param[in] str A string to print explaining the warning. */ #define dmnsn_warning(str) \ dmnsn_report_error(false, DMNSN_FUNC, __FILE__, __LINE__, str) /** * Report an error. - * @param[in] str A string to print explaining the error. + * @param[in] str A string to print explaining the error. */ #define dmnsn_error(str) \ do { \ |