You must be registered to post a reply. Click here to register.
T O P I C R E V I E W
znakeeye
Posted - Mar 11 2009 : 12:29:56 PM You added the automatic #include. Why not do the same for namespace-classes?
vector<int> v; When vector is only found in namespace "std", the code is transformed to this: std::vector<int> v; ... if "using std::vector;" or "using namespace std;" are not set.
Or something like that. You get the idea. Be creative! :P