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:
@@ -478,7 +478,7 @@ bool JpegDecoder::readData( Mat& img )
|
||||
struct JpegDestination
|
||||
{
|
||||
struct jpeg_destination_mgr pub;
|
||||
vector<uchar> *buf, *dst;
|
||||
std::vector<uchar> *buf, *dst;
|
||||
};
|
||||
|
||||
METHODDEF(void)
|
||||
@@ -537,7 +537,7 @@ ImageEncoder JpegEncoder::newEncoder() const
|
||||
return new JpegEncoder;
|
||||
}
|
||||
|
||||
bool JpegEncoder::write( const Mat& img, const vector<int>& params )
|
||||
bool JpegEncoder::write( const Mat& img, const std::vector<int>& params )
|
||||
{
|
||||
m_last_error.clear();
|
||||
|
||||
@@ -552,7 +552,7 @@ bool JpegEncoder::write( const Mat& img, const vector<int>& params )
|
||||
fileWrapper fw;
|
||||
int width = img.cols, height = img.rows;
|
||||
|
||||
vector<uchar> out_buf(1 << 12);
|
||||
std::vector<uchar> out_buf(1 << 12);
|
||||
AutoBuffer<uchar> _buffer;
|
||||
uchar* buffer;
|
||||
|
||||
|
Reference in New Issue
Block a user