From 2662abea6d97d8df5283cc06ab05c8e2e6786871 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Wed, 14 Aug 2019 20:51:34 +0200 Subject: [PATCH] fixed compilation problem --- contrib/epee/include/file_io_utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/epee/include/file_io_utils.h b/contrib/epee/include/file_io_utils.h index 86b9d6e9..39a96942 100644 --- a/contrib/epee/include/file_io_utils.h +++ b/contrib/epee/include/file_io_utils.h @@ -294,7 +294,7 @@ namespace file_io_utils { try { - std::ifstream fstream; + boost::filesystem::ifstream fstream; //fstream.exceptions(std::ifstream::failbit | std::ifstream::badbit); fstream.open(path_to_file, std::ios_base::binary | std::ios_base::in | std::ios::ate); if (!fstream.good())