| Commit message (Collapse) | Author | Age |
|
|
|
| |
static assertion is now just the default behaviour, not a catch all template class
|
| |
|
| |
|
| |
|
|
|
|
|
| |
Clang/LLVM only macro which allows a more pure use of CTF with everything
inline. e.g. scprintf(str, "Number = %d", n)
|
| |
|
| |
|
|
|
|
| |
Replace it in its one use by just passing the library path on the test command line
|
| |
|
| |
|
| |
|
|
|
|
| |
Adds support for a lot (but not all) of printf like formatters
|
|
|
|
|
|
| |
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.
|
| |
|
|
|
|
|
|
| |
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.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Reduce header bloat by moving the types into the .cpp.
|
| |
|
|
|
|
| |
Allows a formatter to be a typedef in multiple compilation units.
|
| |
|
|
|
|
| |
Tidy threading code... no need for pointers now
|
|
|
|
|
|
| |
Updates resource pool... We don't need our own usage counter when
shared_ptr has a perfectly good one... So long as you remember it's one
too high cos we keep one in InUse.
|
|
|
|
| |
Updates resource pool to have an interface more in line with the C++ Core Guidelines.
|
|
|
|
|
| |
Adds a friendly wrapper function to construct and install a plugin
(similar interface std::make_...)
|
|
|
|
| |
Remove straggling references to boost namespace which should be std.
|
|
|
|
| |
Remove intrusivePtrBase.
|
|
|
|
| |
Remove all boost things now in the standard library from tests.
|
|
|
|
| |
Remove all boost things now in the standard library from scope exit.
|
|
|
|
| |
Remove all boost things now in the standard library from CTF.
|
|
|
|
| |
Remove all boost things now in the standard library from buffer.
|
|
|
|
| |
Remove all boost things now in the standard library from cache.
|
|
|
|
|
|
| |
Replaces boost locks with std locks. Removes upgradable locks which
aren't yet supported in native C++. Bolsters tests around behaviour of
lock helpers and simplifies their implementation.
|
|
|
|
| |
Remove all boost things now in the standard library from exception.
|
|
|
|
| |
Remove all boost things now in the standard library from resource pool.
|
|
|
|
| |
Remove all boost things now in the standard library from lazyPointer.
|
|
|
|
| |
Remove all boost things now in the standard library from uriParse.
|
|
|
|
| |
Remove all boost things now in the standard library from nvpParse.
|
|
|
|
| |
Remove all boost things now in the standard library from curl things.
|
|
|
|
| |
Remove all boost things now in the standard library from lexer.
|
|
|
|
|
| |
Remove all raw pointers and boost things now in the standard library
from plugins and factory.
|
| |
|
| |
|
| |
|
| |
|
| |
|