Skip to content

Commit c27f3c7

Browse files
committed
language_for_testing: Fix GetLocales namespace
1 parent 0e63835 commit c27f3c7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/language_for_testing.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,7 @@ void LanguageInitialize() { }
88
std::string_view LanguageTranslate(const char *key) { return key; }
99
std::string_view LanguagePluralTranslate(const char *singular, std::string_view plural, int count) { return count == 1 ? singular : plural; }
1010
std::string_view LanguageParticularTranslate(std::string_view context, std::string_view message) { return message; }
11+
12+
namespace devilution {
1113
std::vector<std::string> GetLocales() { return {}; }
14+
} // namespace devilution

0 commit comments

Comments
 (0)