Test: virtual_destructor.cpp virtual_destructor.cpp: In function 'int main()': virtual_destructor.cpp:42:10: error: 'vector' is not a member of 'std' 42 | std::vector plugins; | ^~~~~~ virtual_destructor.cpp:2:1: note: 'std::vector' is defined in header ''; did you forget to '#include '? 1 | #include +++ |+#include 2 | #include virtual_destructor.cpp:42:23: error: expected primary-expression before '*' token 42 | std::vector plugins; | ^ virtual_destructor.cpp:42:24: error: expected primary-expression before '>' token 42 | std::vector plugins; | ^ virtual_destructor.cpp:42:26: error: 'plugins' was not declared in this scope; did you mean 'Plugin'? 42 | std::vector plugins; | ^~~~~~~ | Plugin