Why vector
In C , the std::vector
The Issue
In the provided example, a function callIfToggled is used to toggle a bool value and call a method on a struct. When attempting to pass a reference to an element of a std::vector
The Reason
Within the bool vector specialization, vector
Solutions
Example (Vector of Char):
#includestruct A { void foo() {} }; template void callIfToggled(char v1, char &v2, T &t) { if (v1 != v2) { v2 = v1; t.foo(); } } int main() { std::vector v = { false, true, false }; const char f = false; A a; callIfToggled(f, v[0], a); callIfToggled(f, v[1], a); callIfToggled(f, v[2], a); }
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3