Anna.cpp: In function 'void Anna(int, std::vector<char>)':
Anna.cpp:13:3: error: 'assert' was not declared in this scope
13 | assert(0);
| ^~~~~~
Anna.cpp:2:1: note: 'assert' is defined in header '<cassert>'; did you forget to '#include <cassert>'?
1 | #include "Anna.h"
+++ |+#include <cassert>
2 | #include <vector>
Bruno.cpp:8:5: warning: 'int {anonymous}::FunctionExample(int)' defined but not used [-Wunused-function]
8 | int FunctionExample(int P) { return 1 - P; }
| ^~~~~~~~~~~~~~~
Bruno.cpp:6:5: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
6 | int variable_example = 0;
| ^~~~~~~~~~~~~~~~