Replace using namespace with namespace.
This commit is contained in:
parent
9031f0d526
commit
a8c3127570
|
@ -18,10 +18,12 @@
|
|||
|
||||
#include <utility>
|
||||
|
||||
using namespace mastorss;
|
||||
using std::to_string;
|
||||
using std::move;
|
||||
|
||||
namespace mastorss
|
||||
{
|
||||
|
||||
HTTPException::HTTPException(const int error)
|
||||
: error_code{static_cast<uint16_t>(error)}
|
||||
{}
|
||||
|
@ -61,3 +63,4 @@ const char *FileException::what() const noexcept
|
|||
{
|
||||
return _message.c_str();
|
||||
}
|
||||
} // namespace mastorss
|
||||
|
|
Loading…
Reference in New Issue
Block a user