Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Lots more clang tidy fixes | Dan Goodliffe | 2019-03-03 |
| | |||
* | More clang-tidy WIP | Dan Goodliffe | 2019-02-12 |
| | |||
* | Explicitly disable stream operator() of formatterlibadhocutil-0.7.0 | Dan Goodliffe | 2019-02-04 |
| | | | | | When stream type does not have a write member, prevents failure when overload matches call because first argument can passed by non-const reference. | ||
* | Add missing doxygen commentslibadhocutil-0.6.0 | Dan Goodliffe | 2019-01-18 |
| | |||
* | Literal operator based inline formatting | Dan Goodliffe | 2019-01-18 |
| | |||
* | Support scprintf macro for format string with no args | Dan Goodliffe | 2018-09-04 |
| | |||
* | scprintf macro with non-variable | Dan Goodliffe | 2018-09-04 |
| | | | | | Updates scprintf macro to handle the case where strm isn't a variable and thus cannot be captured, instead passing it as a parameter to the lambda. | ||
* | Add missing doxygen comments | Dan Goodliffe | 2018-09-03 |
| | |||
* | Greatly improved CTF printf support | Dan Goodliffe | 2018-09-03 |
| | |||
* | Add constexpr functions for identifying char ranges | Dan Goodliffe | 2018-08-30 |
| | |||
* | Add in a template type arg for enable_if | Dan Goodliffe | 2018-08-30 |
| | |||
* | Simplify CTF bad format handling | Dan Goodliffe | 2018-08-30 |
| | | | | static assertion is now just the default behaviour, not a catch all template class | ||
* | Add the scprintf macro | Dan Goodliffe | 2018-08-20 |
| | | | | | Clang/LLVM only macro which allows a more pure use of CTF with everything inline. e.g. scprintf(str, "Number = %d", n) | ||
* | Fix compilation with template auto and + operator | Dan Goodliffe | 2018-08-20 |
| | |||
* | CTF printf | Dan Goodliffe | 2018-07-04 |
| | | | | Adds support for a lot (but not all) of printf like formatters | ||
* | Any stream type with CTF | Dan Goodliffe | 2018-06-17 |
| | | | | | | Minor alteration to allow for custom helpers. Then a unit test to demonstrate that with suitable helpers, a CTF can operate on any stream type, such as a stdio FILE. | ||
* | Create a typedef for the formatters char type | Dan Goodliffe | 2018-06-17 |
| | |||
* | Lorem Ipsum test | Dan Goodliffe | 2018-06-17 |
| | | | | | | Adds test case when formatter content is generated from a simple .txt file using xxd. The header is simply including and processed as a string literal. | ||
* | Simplify CTF invalid static_assert | Dan Goodliffe | 2018-06-17 |
| | |||
* | Use template auto types throughout CTF | Dan Goodliffe | 2018-06-17 |
| | |||
* | Massively simplified CTF with C++17 constexpr | Dan Goodliffe | 2018-06-17 |
| | |||
* | Add template string utils | Dan Goodliffe | 2018-06-16 |
| | |||
* | Template strings don't need to be extern C++17, just constexpr | Dan Goodliffe | 2018-06-16 |
| | |||
* | Add missing include guardlibadhocutil-0.5.1 | Dan Goodliffe | 2018-05-08 |
| | |||
* | Inline the formatter consts | Dan Goodliffe | 2018-05-08 |
| | | | | Allows a formatter to be a typedef in multiple compilation units. | ||
* | Fix uniqueness of generated name for format string var | Dan Goodliffe | 2018-05-08 |
| | |||
* | C++17 | Dan Goodliffe | 2018-04-06 |
| | | | | Remove all boost things now in the standard library from CTF. | ||
* | Refactor to reduce AdHoc namespace polutionlibadhocutil-0.4.1 | Dan Goodliffe | 2016-12-30 |
| | |||
* | Add macros to ease declartion of formatters | Dan Goodliffe | 2016-12-30 |
| | |||
* | Add doxygen comments for compile time formatter | Dan Goodliffe | 2016-12-30 |
| | |||
* | Return stream to ease inlining | Dan Goodliffe | 2016-12-30 |
| | |||
* | Add helper for simply returning a formatted string (sprintf style) | Dan Goodliffe | 2016-12-30 |
| | |||
* | Rename hacked in 'stuff' to 'scan' | Dan Goodliffe | 2016-12-30 |
| | |||
* | Macro helper for easily adding new formatters that take a single character ↵ | Dan Goodliffe | 2016-12-09 |
| | | | | parameter from the format string | ||
* | Macro helper for easily adding new formatters | Dan Goodliffe | 2016-12-09 |
| | |||
* | Provide a way of formatting a literal percent sign | Dan Goodliffe | 2016-12-09 |
| | |||
* | Custom stop chars are never used | Dan Goodliffe | 2016-12-09 |
| | |||
* | Simplify the upto writers | Dan Goodliffe | 2016-12-09 |
| | |||
* | Simplify the upto buffer | Dan Goodliffe | 2016-12-09 |
| | |||
* | Split parser buffer from upto buffer (simpler) | Dan Goodliffe | 2016-12-09 |
| | |||
* | Simplify parser templates | Dan Goodliffe | 2016-12-09 |
| | |||
* | Pass format string as template argument into writer to avoid copying out ↵ | Dan Goodliffe | 2016-12-09 |
| | | | | bytes from stream write | ||
* | Bit messy and fiddly, but removes the template string length limit of (just ↵ | Dan Goodliffe | 2016-12-09 |
| | | | | under) compile time template-depth | ||
* | Refactor to avoid hitting the template depth limit so early | Dan Goodliffe | 2016-12-08 |
| | |||
* | Adds support for the compile time formatter | Dan Goodliffe | 2016-12-07 |