Remove all using directives for STL namespace and members

Made all STL usages explicit to be able automatically find all usages of
particular class or function.
This commit is contained in:
Andrey Kamaev
2013-02-24 20:14:01 +04:00
parent f783f34e0b
commit 2a6fb2867e
310 changed files with 5744 additions and 5964 deletions
+2 -2
View File
@@ -64,7 +64,7 @@ struct WSQueue
static int
allocWSNodes( vector<WSNode>& storage )
allocWSNodes( std::vector<WSNode>& storage )
{
int sz = (int)storage.size();
int newsz = MAX(128, sz*3/2);
@@ -93,7 +93,7 @@ void cv::watershed( InputArray _src, InputOutputArray _markers )
Mat src = _src.getMat(), dst = _markers.getMat();
Size size = src.size();
vector<WSNode> storage;
std::vector<WSNode> storage;
int free_node = 0, node;
WSQueue q[NQ];
int active_queue;