Remove redundant namespace prefix

This commit is contained in:
Chocobo1
2020-09-25 14:37:00 +08:00
parent 1a3091a980
commit ac3ab2432a
6 changed files with 36 additions and 36 deletions

View File

@@ -33,7 +33,7 @@
namespace BitTorrent
{
uint qHash(const BitTorrent::TorrentState key, const uint seed)
uint qHash(const TorrentState key, const uint seed)
{
return ::qHash(static_cast<std::underlying_type_t<TorrentState>>(key), seed);
}