Georgios Fotopoulos
Georgios Fotopoulos
I can also confirm this is true.
@mechatheo I tried to make your code run on C++14 but without any success... It does work though in C++17 as you said! Regardless, I find the source code very...
Nevermind! Just found [this](https://github.com/boost-ext/sml/blob/master/example/visitor.cpp) undocumented example. By undocumented I mean it wasn't documented on the wiki `https://boost-ext.github.io/sml/examples.html`. I had to look up the repository.
> @Rijom I think you missunderstood the semantics of 'unexpected_event'. It is triggered for unknown events/types. So for events which are not defined in your transition table e.g.: calling process...
> @Rijom it sounds like the case you have is most correctly solved using `event`, and without `unexpected_event`, and I would posit that the names even make sense: you are...
~I am having trouble getting Visual Studio Code to work as a merge tool.~ Here is my `.hgrc` ``` [ui] username = George Fotopoulos merge = code [merge-tools] code.priority =...
@OnionOnGithub You could give [vcpkg](https://vcpkg.io/en/index.html) a try! ``` git clone https://github.com/Microsoft/vcpkg.git cd vcpkg bootstrap-vcpkg.bat vcpkg install sfml:x86-windows sfml:x64-windows vcpkg integrate install ```
@OnionOnGithub You forgot to pass the CMake Toolchain File as an argument when configuring the CMake Cache.  For me that parameter is `-DCMAKE_TOOLCHAIN_FILE=C:/Users/xorz57/vcpkg/scripts/buildsystems/vcpkg.cmake`
I opened pull request #9 to fix this. I had trouble getting this project to run on windows but after what I did it now works on windows and linux...