I extracted some template methods for dealing with STL containers, so a vector of any type can use the function customPushBack(&vec, item) where the item will only be pushed back if it isn't already in the vector and certain conditions are met.
Do I have to manually go to all of the files where the code has been written manually and replace it with my new function call? There are literally thousands of places this shows up in this project, and I can't use simple find/replace because the vector types could all be different.
Could I possibly use Visual Assist or some other tool to help me?
Any advice would be appreciated!