mirror of
https://github.com/aimrebirth/tools.git
synced 2026-04-15 01:43:25 +00:00
Remove using namespace.
This commit is contained in:
parent
0265eb5e89
commit
6bb005e5cc
1 changed files with 2 additions and 4 deletions
|
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue