Roman Siromakha

Results 17 comments of Roman Siromakha

ccache is used not only for CI. Current configuraiton allows to use it locally. I suggest to add `CMAKE_C_COMPILER_LAUNCHER` and `CMAKE_CXX_COMPILER_LAUNCHER` to CMake args in `scripts/build.sh` to allow custom usage...

Hi, the video is quite outdated now. There have been many API changes since then. Examples provided there will compile only with the library version of that time. So I...

Hi, Michael. I've stared to work on examples. Look at my pr draft: https://github.com/yandex/ozo/pull/192 . So far only two new examples using `asio::use_future` completion token and callback function. You haven't...

Looks like boost is not longer available to download at https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.gz so all linux builds have failed. Need to switch to https://boostorg.jfrog.io/artifactory/main/release/1.66.0/source/boost_1_66_0.tar.gz . Or maybe setup our own mirror to...

It's not only outdated version. All boost.org downloads have been moved to boostorg.jfrog.io.

The problem is in `sol::usertype_traits::metatable` function. It [produces](https://github.com/ThePhD/sol2/blob/19898d8d3e6c3def33625082343428be1bb9387b/include/sol/stack_push.hpp#L186) the same result for both lambda types because it [relies](https://github.com/ThePhD/sol2/blob/19898d8d3e6c3def33625082343428be1bb9387b/include/sol/demangle.hpp#L86) on `__PRETTY_FUNCTION__` therefore function pointer for the second one is [not registered](https://github.com/ThePhD/sol2/blob/19898d8d3e6c3def33625082343428be1bb9387b/include/sol/stack_core.hpp#L790)....

Fixed conversion to opposite coordinates. `x` should be same. **How to check.** 1. Make strategy with code (prints all robots coordinates to stdout): ```rust impl Strategy for MyStrategyImpl { fn...

How do you detect that NavMesh CacheSize causes crashes? There is a panel enabled by F4 on PC (don't know how it works on android): ![image](https://user-images.githubusercontent.com/764107/113860374-3e44e580-97a6-11eb-9fb2-26b351b9a957.png) > > > This...

> The F4 display shows the ever growing number, yes, What's maximum number did you see? And what is the openmw version?

I had my own implementation for this feature. That's why I noticed this bug. I store it in my private repo but don't use it anymore. There I used a...