From 8233a24ba8f86d655cf9573d6018668499412d72 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Mon, 16 Oct 2017 09:37:51 +0100 Subject: [PATCH] unit_tests: fix build on windows Reported by iDunk on IRC --- tests/unit_tests/sha256.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {