aboutsummaryrefslogtreecommitdiff
path: root/src/crypto
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2018-05-14 09:51:03 +0200
committerpracticalswift <practicalswift@users.noreply.github.com>2018-06-06 11:09:05 +0200
commit906bee8e5f474f8718d02e6f1938f20dcfe3d2cc (patch)
tree5cb00fb50275aa72f4a3fd996bab8b37a2e95bf8 /src/crypto
parenta589f536b5e15daf3ac6ffcc137a146514c81967 (diff)
downloadbitcoin-906bee8e5f474f8718d02e6f1938f20dcfe3d2cc.tar.xz
Use bracket syntax includes ("#include <foo.h>")
Diffstat (limited to 'src/crypto')
-rw-r--r--src/crypto/sha256_avx2.cpp4
-rw-r--r--src/crypto/sha256_sse41.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/crypto/sha256_avx2.cpp b/src/crypto/sha256_avx2.cpp
index f45c1d4ab6..b338b06927 100644
--- a/src/crypto/sha256_avx2.cpp
+++ b/src/crypto/sha256_avx2.cpp
@@ -7,8 +7,8 @@
#include <x86intrin.h>
#endif
-#include "crypto/sha256.h"
-#include "crypto/common.h"
+#include <crypto/sha256.h>
+#include <crypto/common.h>
namespace sha256d64_avx2 {
namespace {
diff --git a/src/crypto/sha256_sse41.cpp b/src/crypto/sha256_sse41.cpp
index a11d658c70..be71dd8fb8 100644
--- a/src/crypto/sha256_sse41.cpp
+++ b/src/crypto/sha256_sse41.cpp
@@ -7,8 +7,8 @@
#include <x86intrin.h>
#endif
-#include "crypto/sha256.h"
-#include "crypto/common.h"
+#include <crypto/sha256.h>
+#include <crypto/common.h>
namespace sha256d64_sse41 {
namespace {