Ivan Shynkarenka

Results 148 comments of Ivan Shynkarenka

MinGW version 8.1.0 is far to old. New builds are available here: https://github.com/niXman/mingw-builds-binaries/releases

> This project seems to be dead, so I switched to [cygwin/cygwin-install-action](https://github.com/cygwin/cygwin-install-action). So did I

I also see issues with WebSocket SSL under Windows environment. Here comes my test results in comparison Unsecured WebSockets vs WebSocket SSL: **WebSockets** Server address: 127.0.0.1 Server port: 4444 Server...

It seems it is a known Alpine Linux issue - [Backtrace not available within Alpine containers #1904](https://github.com/PDAL/PDAL/issues/1904). For this system StackTrace should be implemented using [libunwind](https://www.nongnu.org/libunwind/). Due to lack of...

Please try `add_definitions("-std=c++14")`

Thanks for reporting! Fixed in 1.13.0.0

1. Fixed with `#if defined(FMT_VERSION) && (FMT_VERSION >= 90000)` check. Earlier {fmt} versions are not supported anymore 2. [Corresponding README.md section](https://github.com/chronoxor/FastBinaryEncoding#c) is updated

What should we do instead of `throw std::runtime_error/std::invalid_argument/std::logic_error`? Should we call abort() or assert() and just return?

As I see in documentation: [`-fno-exceptions` turns all standard library throw's into a call to std::abort()](http://gcc.gnu.org/onlinedocs/libstdc++/manual/using_exceptions.html) Is there also any definition for disabled exceptions? Can you check if `__cpp_exceptions` definition...