dbj

Results 25 issues of dbj

### Mercilessly pragmatic and feasible. Thanks ...

We use the [`/kernel`](https://docs.microsoft.com/en-us/cpp/build/reference/kernel-create-kernel-mode-binary?view=msvc-160) switch. What happens in those builds is resolved in ``: ```cpp // Depending on _HAS_EXCEPTIONS // MS STL transforms to using SEH instead of c++ exceptions...

I assume EASTL is very rarely (if ever) used in a code that uses C++ exceptions. I have noticed EASTL if and when throwing uses and throws `std::exception` and derivatives....

### https://godbolt.org/z/EfEvq6nh3 Please see that Godbolt. > For well-known reasons linker complains and compilation is not done > linker complains `sqrt()` can not be found, thus '-lm' is required. yes...

Code is available online https://godbolt.org/z/cYnaoxM58 . Admittedly with much smaller matrix sizes. My code has design issues and is needlessly complex, but correct and works ok for smaller matrixes. If...

**Describe the issue** Lack of documentation. I would love if someone shows me the postman call to test: ```c# [OpenApiSecurity("user_auth_header", SecuritySchemeType.Http, Scheme = OpenApiSecuritySchemeType.Bearer, BearerFormat = "JWT", Name = "Authorization")]...

documentation

I assume I am not even on the right place to ask this question ... Thanks

Can we please have a "simple example" that we can download and use as a starting point? VSCode `clangd` `"Hello World"`, a project I suppose. Also, there is a LOT...

enhancement

eve.js line # 68 ``` indexed.sort( numsort ) ; ``` perhaps should be ``` if ( indexed.length > 1) indexed.sort( numsort ) ; ``` Thanks