Closed Animus-Surge closed 4 days ago
Duplicate: #2527, #1492
Wrap fmt::ptr()
to pointer variable.
If you encounter assertion errors, could you also provide us with the source code of your project that caused the error? It will help us to investigate the cause of the error.
That worked, thank you.
Is there a documentation page that describes these quirks somewhere? My use case was calling a function that returned a char*
and there wasn't any info in the readme about that.
The logging format is implemented by the fmt library:
https://github.com/gabime/spdlog/blob/951c5b9987e21e74ad052593e56bcba89911ef80/README.md?plain=1#L48
You need to read the documentation of the fmt library.
fmtlib/fmt:
Documentation: https://fmt.dev/dev/
fmt::ptr()
is here: https://fmt.dev/11.0/api/#utilities
I see, thank you.
Trying to build a project with spdlog using cmake and gnu make results in the following assertion error:
I have never used spdlog before and therefore have no idea what I am doing wrong, if anything.
I tried two different methods for adding spdlog to my project:
add_subdirectory
Currently I use the latter, but both result in the same error. Is there any guidance on something like this? I looked through the issues list but I couldn't find anything that matched.
Versions: spdlog
v1.15.0
cmake3.25.1
gnu make4.3