diff options
author | mj-xmr <mjxmr@protonmail.com> | 2021-08-28 15:32:50 +0200 |
---|---|---|
committer | mj-xmr <mjxmr@protonmail.com> | 2021-08-28 15:32:50 +0200 |
commit | 0ae1cd241336c73bf20412b90b525f51a499ec53 (patch) | |
tree | c206b7731471c6c2edcd64d0e1c6da38c5058f8d | |
parent | Merge pull request #7894 (diff) | |
download | monero-0ae1cd241336c73bf20412b90b525f51a499ec53.tar.xz |
v0.17: Fix Boost-1.77: Add missing algorithm header to i18n.cpp
-rw-r--r-- | src/common/i18n.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/i18n.cpp b/src/common/i18n.cpp index ebc367b3a..e5b2e32f6 100644 --- a/src/common/i18n.cpp +++ b/src/common/i18n.cpp @@ -34,6 +34,7 @@ #include "file_io_utils.h" #include "common/i18n.h" #include "translation_files.h" +#include <algorithm> #undef MONERO_DEFAULT_LOG_CATEGORY #define MONERO_DEFAULT_LOG_CATEGORY "i18n" |