mirror of https://github.com/davisking/dlib.git
Remove unneeded using namespace std (#2799)
This commit is contained in:
parent
5b9ab23cc0
commit
b86871241b
|
@ -1070,7 +1070,6 @@ namespace dlib
|
|||
Callback&& clb
|
||||
)
|
||||
{
|
||||
using namespace std;
|
||||
using namespace details;
|
||||
|
||||
if (!is_open())
|
||||
|
@ -1233,7 +1232,6 @@ namespace dlib
|
|||
|
||||
inline bool demuxer::open(const args& a)
|
||||
{
|
||||
using namespace std;
|
||||
using namespace std::chrono;
|
||||
using namespace details;
|
||||
|
||||
|
@ -1442,7 +1440,6 @@ namespace dlib
|
|||
|
||||
inline bool demuxer::fill_queue()
|
||||
{
|
||||
using namespace std;
|
||||
using namespace details;
|
||||
|
||||
if (!st.frame_queue.empty())
|
||||
|
|
|
@ -836,7 +836,6 @@ namespace dlib
|
|||
|
||||
inline bool encoder::open()
|
||||
{
|
||||
using namespace std;
|
||||
using namespace details;
|
||||
|
||||
register_ffmpeg();
|
||||
|
@ -1141,7 +1140,6 @@ namespace dlib
|
|||
|
||||
inline bool muxer::open(const args& a)
|
||||
{
|
||||
using namespace std;
|
||||
using namespace std::chrono;
|
||||
using namespace details;
|
||||
|
||||
|
@ -1308,7 +1306,6 @@ namespace dlib
|
|||
|
||||
inline bool muxer::push(frame f)
|
||||
{
|
||||
using namespace std;
|
||||
using namespace details;
|
||||
|
||||
if (!is_open())
|
||||
|
@ -1339,7 +1336,6 @@ namespace dlib
|
|||
>
|
||||
bool muxer::push(const image_type& img)
|
||||
{
|
||||
using namespace std;
|
||||
using namespace details;
|
||||
|
||||
return is_open() &&
|
||||
|
|
Loading…
Reference in New Issue