vsol-II

Results 4 comments of vsol-II

Time to time it's very beneficial to mark methods with attributes. E.g. `[[gnu::always_inline]]`. This can be done via macros (empty by default). Would be really nice to categorize the functions...

You know, in case of C++ it can be basically a set of hardcoded macros: ```c++ #ifndef SBE_CFG_METHOD_PREFIX # define SBE_CFG_METHOD_PREFIX #endif #ifndef SBE_CFG_GETTER_PREFIX # define SBE_CFG_GETTER_PREFIX SBE_CFG_METHOD_PREFIX #endif #ifndef...

Yes, I was thinking about macro (or some alternative way to provide a piece of code to SBE Tool to inject). I would say the default behavior should be the...

Here is a piece of code to play with: https://godbolt.org/z/S8x7Rw. It contains commented line at the very bottom -- un-commenting will lead to bloating the generated code. Also it contains...