• Jean-Michaël Celerier's avatar
    Add an optional final qualifier to types · 53138c20
    Jean-Michaël Celerier authored
    When building with GCC's -Wfinal-types, a lot of types of spdlog
    are marked as being more optimizable if they were marked final.
    
    This patch adds a possibility for the user of the library to `#define SPDLOG_FINAL final`
    and enjoy potentially better performance : GCC is then able to replace virtual calls by true
    function calls if it can ensure that there are no derived types).
    
    By default SPDLOG_FINAL is defined to nothing to not break existing code that
    may be inheriting of some of these types for some reason.
    53138c20
Name
Last commit
Last update
..
async_log_helper.h Loading commit data...
async_logger_impl.h Loading commit data...
file_helper.h Loading commit data...
log_msg.h Loading commit data...
logger_impl.h Loading commit data...
mpmc_bounded_q.h Loading commit data...
null_mutex.h Loading commit data...
os.h Loading commit data...
pattern_formatter_impl.h Loading commit data...
registry.h Loading commit data...
spdlog_impl.h Loading commit data...