gelldur / EventBus

A lightweight and very fast event bus / event framework for C++17
Apache License 2.0
371 stars 81 forks source link

Fix weird MSVC errors #42

Closed Dodopriester closed 3 years ago

Dodopriester commented 3 years ago

I am not sure if this was caused by the code itself or some mistake I made during building but I followed every step according to the README but always got to an entire mass of weird, illegogical errors. Apparently, the core problem was that the not keyword isn't defined in MSVC. Another issue was that it couldn't find std::back_inserter (I already addressed that in #41 ).

Errors without the changes: dump.txt

gelldur commented 3 years ago

not shouldn't be a problem. Even so, you fix here missing header so I will accept, thank you very much.