microsoft / krabsetw

KrabsETW provides a modern C++ wrapper and a .NET wrapper around the low-level ETW trace consumption functions.
Other
605 stars 149 forks source link

Added <vector> include to event_filter.hpp to make it compile on VS2019 #75

Closed bionicbeagle closed 5 years ago

bionicbeagle commented 5 years ago

event_filter.hpp uses std::vector but does not contain #include <vector>

This presumably worked previously because one of the existing includes transitively included vector but that is apparently no longer the case.

swannman commented 5 years ago

@bionicbeagle thanks for submitting this!