Replace using namespace with namespace.

This commit is contained in:
tastytea 2019-12-29 08:33:31 +01:00
parent 9031f0d526
commit a8c3127570
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 4 additions and 1 deletions

View File

@ -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