aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-05-05 04:51:29 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-05-05 04:51:29 +0300
commit18bd83b1fee2eb47ed4ad05c91f2d6cc311fc9ad (patch)
tree6947e32ccbff617841b46b43be382d7f089e1816 /src/util
parente95e658b8ec6e02229691a1941d688e96d4df6af (diff)
downloadbitcoin-18bd83b1fee2eb47ed4ad05c91f2d6cc311fc9ad.tar.xz
util: Cleanup translation.h
Diffstat (limited to 'src/util')
-rw-r--r--src/util/translation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/translation.h b/src/util/translation.h
index b2d964c977..45595405e7 100644
--- a/src/util/translation.h
+++ b/src/util/translation.h
@@ -26,11 +26,11 @@ inline bilingual_str operator+(const bilingual_str& lhs, const bilingual_str& rh
}
/** Mark a bilingual_str as untranslated */
-inline static bilingual_str Untranslated(std::string original) { return {original, original}; }
+inline bilingual_str Untranslated(std::string original) { return {original, original}; }
/** Unary operator to return the original */
-inline static std::string OpOriginal(const bilingual_str& b) { return b.original; }
+inline std::string OpOriginal(const bilingual_str& b) { return b.original; }
/** Unary operator to return the translation */
-inline static std::string OpTranslated(const bilingual_str& b) { return b.translated; }
+inline std::string OpTranslated(const bilingual_str& b) { return b.translated; }
namespace tinyformat {
template <typename... Args>