I'm getting this compile error
C:\Program Files (x86)\Windows Kits\10\include\10.0.17134.0\winrt\wrl\implements.h(1453): warning C4265: 'Microsoft::WRL::FtmBase': class has virtual functions, but destructor is not virtual
after adding "#include < wrl.h>" to my program. I'm using /W4 flag. Is there something that I'm missing here? some kind of macro that needs to be defined? Curious if there's a way to fix that warning without suppressing it.
Also, I'm using latest VS 2017 with c++17 if that helps.