LibCrypto: Use nested namespace specifiers in Hash/

This commit is contained in:
Nico Weber 2023-01-04 14:11:12 -05:00 committed by Andreas Kling
commit 1fe3ba17c0
Notes: sideshowbarker 2024-07-17 02:11:01 +09:00
7 changed files with 7 additions and 22 deletions

View file

@ -10,8 +10,7 @@
#include <AK/StringView.h>
#include <AK/Types.h>
namespace Crypto {
namespace Hash {
namespace Crypto::Hash {
template<size_t DigestS>
struct Digest {
@ -59,4 +58,3 @@ protected:
virtual ~HashFunction() = default;
};
}
}