no matching function for call to constructor C++ // не вызывается конструктор в C++
Помогите исправить ошибку #include <stdio.h> #include <stdint.h> using namespace std; class TEST1 { public: int a1; public: TEST1(uint8_t a) { this->a1 = a; }; }; c…