diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-21 14:51:29 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-01-10 01:57:54 +0000 |
commit | fdd4c5e5770c2765afd7734550dc80e31a480045 (patch) | |
tree | 9564716b74e971828e0fbdbc6bb13ea8b2362428 /src/crypto | |
parent | epee: remove dependency on common (diff) | |
download | monero-fdd4c5e5770c2765afd7734550dc80e31a480045.tar.xz |
move memwipe to epee to avoid common<->crypto circular dependencies
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/chacha.h | 2 | ||||
-rw-r--r-- | src/crypto/crypto.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/chacha.h b/src/crypto/chacha.h index a9665030d..c11e4aa2f 100644 --- a/src/crypto/chacha.h +++ b/src/crypto/chacha.h @@ -39,7 +39,7 @@ #if defined(__cplusplus) #include <memory.h> -#include "common/memwipe.h" +#include "memwipe.h" #include "hash.h" namespace crypto { diff --git a/src/crypto/crypto.h b/src/crypto/crypto.h index 0ce5e6d7a..a929302c1 100644 --- a/src/crypto/crypto.h +++ b/src/crypto/crypto.h @@ -41,7 +41,7 @@ #include "common/pod-class.h" #include "common/util.h" -#include "common/memwipe.h" +#include "memwipe.h" #include "generic-ops.h" #include "hex.h" #include "span.h" |