c++ - Possible to re-name STL vector? -


i working on big , old c++ project. word "vector" has been used on place. trying add new functionality project utilizing stl vector. not working. in addition, allowed modify specific sections of code, can not change use of "vector".

is there way rename stl vector , use it?

use c++ namespaces.

#include <vector>  // note absence of `using namespace std;` line  int main() {     // note `std::` qualification     std::vector<int> x;      // ... } 

Comments

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -