Comment on C++98 Support Costs Extra (or why we should switch to C++11 now)parentComments−pmr_14yAbout variable length arrays: Scott Meyers pointed out that this code std::vector<int[n]> a; // n is a runtime argument has no real meaning in C++. Also std::vector and std::array already cover the use case.
Comments
About variable length arrays: Scott Meyers pointed out that this code std::vector<int[n]> a; // n is a runtime argument has no real meaning in C++. Also std::vector and std::array already cover the use case.