aboutsummaryrefslogtreecommitdiff
path: root/src/common/Cryptography/CryptoRandom.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Cryptography/CryptoRandom.h')
-rw-r--r--src/common/Cryptography/CryptoRandom.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/common/Cryptography/CryptoRandom.h b/src/common/Cryptography/CryptoRandom.h
index da8498a1fa4..67abf684788 100644
--- a/src/common/Cryptography/CryptoRandom.h
+++ b/src/common/Cryptography/CryptoRandom.h
@@ -20,7 +20,6 @@
#include "Define.h"
#include <array>
-#include "advstd.h"
namespace Trinity
{
@@ -31,7 +30,7 @@ namespace Crypto
template <typename Container>
void GetRandomBytes(Container& c)
{
- GetRandomBytes(advstd::data(c), advstd::size(c));
+ GetRandomBytes(std::data(c), std::size(c));
}
template <size_t S>