summaryrefslogtreecommitdiff
path: root/src/common/assert.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Port #3474 from CitraGravatar fearlessTobi2018-07-071-1/+1
|
* Update clang formatGravatar James Rowe2018-07-021-3/+2
|
* Rename logging macro back to LOG_*Gravatar James Rowe2018-07-021-2/+2
|
* general: Convert assertion macros over to be fmt-compatibleGravatar Lioncash2018-04-271-2/+3
|
* fix macos buildGravatar MerryMage2018-01-081-1/+1
|
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-2/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-11/+15
|
* assert: Allow UNREACHABLE_MSG to have just one argumentGravatar Sam Spilsbury2016-04-241-1/+1
|
* assert: Add _MSG variations for UNREACHABLE and UNIMPLEMENTEDGravatar Sam Spilsbury2016-04-231-0/+2
|
* Common: Cleanup profiler includes.Gravatar Emmanuel Gil Peyrot2015-06-281-1/+0
|
* Common: Use the log system to print assert messagesGravatar Yuri Kunde Schlesner2015-05-121-7/+3
|
* Clean-up includesGravatar Yuri Kunde Schlesner2015-05-061-0/+1
|
* Asserts: Use lambdas to keep assertion code away from the main code pathGravatar Yuri Kunde Schlesner2015-02-181-6/+25
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-101-0/+36
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.