|
|
|
|
|
by usefulcat
1616 days ago
|
|
Even without that restriction it's not that easy. It generally comes down to a choice between: a) #include <vector> -- Lots of dependencies, but I know it works and I don't want to reinvent the wheel b) #include <my_vector.h> -- Ok, I'm going to reinvent the wheel, but at least my wheel might have slightly fewer dependencies. c) //#include <vector> // I'll just do without the wheel entirely |
|