Remove using namespace.

This commit is contained in:
lzwdgc 2020-03-06 14:05:40 +03:00
parent 0265eb5e89
commit 6bb005e5cc

View file

@ -33,8 +33,6 @@
#include <stdint.h> #include <stdint.h>
#include <string> #include <string>
using namespace std;
// options // options
bool silent = false; bool silent = false;
bool printMaxPolygonBlock = false; bool printMaxPolygonBlock = false;
@ -96,8 +94,8 @@ auto read_model(const path &fn)
if (!b.eof()) if (!b.eof())
{ {
stringstream ss; std::stringstream ss;
ss << hex << b.index() << " != " << hex << b.size(); ss << std::hex << b.index() << " != " << std::hex << b.size();
throw std::logic_error(ss.str()); throw std::logic_error(ss.str());
} }