diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-16 09:37:51 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-16 09:37:51 +0100 |
commit | 8233a24ba8f86d655cf9573d6018668499412d72 (patch) | |
tree | 5c6e7d3b39aa28be501903e68129c1f85b71c984 /tests/unit_tests | |
parent | Merge pull request #2601 (diff) | |
download | monero-8233a24ba8f86d655cf9573d6018668499412d72.tar.xz |
unit_tests: fix build on windows
Reported by iDunk on IRC
Diffstat (limited to 'tests/unit_tests')
-rw-r--r-- | tests/unit_tests/sha256.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/sha256.cpp b/tests/unit_tests/sha256.cpp index f4ad39466..0d657a1a9 100644 --- a/tests/unit_tests/sha256.cpp +++ b/tests/unit_tests/sha256.cpp @@ -28,8 +28,8 @@ #include "gtest/gtest.h" -#include "string_tools.h" #include "common/util.h" +#include "string_tools.h" static bool check(const std::string &data, const char *expected_hash_hex) { |