dbj

Results 59 comments of dbj

`static_assert()` inside a template controls only the instatiation of the type definition of the template. Not the mechanism of template type definition. ```cpp template struct not_a_vector { static_assert(std::is_trivially_copyable_v, "\n\nnot_a_vectorT --...

if `not_a_vector` is in the library not owned by you (it might be owned by MS STL for example) that will go unnoticed, and that might be a problem. For...

Another example from ``` https://github.com/unterumarmung/hyper_log_log/blob/master/hll/hyper_log_log.hxx ``` ```cpp template class hyper_log_log { public: static_assert(k >= 4 && k

Actually, this **is** the correct solution ```cpp template< typename T, std::size_t k> #if __cplusplus >= 202002L // C++20 (and later) code requires // requires-clause (ad-hoc constraint) (k >= 4 &&...

@eyalroz [https://github.com/DBJDBJ/dbj_fixedstring](https://github.com/DBJDBJ/dbj_fixedstring)

Well, I should have said what I have written at the top of the readme a minute ago. Before I might commit some more time I would like to know...

Try AF tagging perhaps? https://www.codeproject.com/Tips/5294072/Add-tags-to-Azure-functions-Application-Insights

> Hi @arynaq we don't apply any filter on the log stream. You see everything that is getting logged in AI. You have some ability to apply filters when you...

> builder.WebHost.ConfigureKestrel spot the `builder.WebHost.ConfigureKestrel` in the OP's code, please.

https://github.com/zserge/jsmn