From ba3109e47a65885cd12b166154965e04a765efdd Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Mon, 14 Sep 2020 17:21:16 -0400 Subject: [PATCH] [ion/simulator] Fix the dummy language implementation --- ion/src/simulator/shared/dummy/language.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ion/src/simulator/shared/dummy/language.cpp b/ion/src/simulator/shared/dummy/language.cpp index ac672ab47..18aedef3e 100644 --- a/ion/src/simulator/shared/dummy/language.cpp +++ b/ion/src/simulator/shared/dummy/language.cpp @@ -1,5 +1,13 @@ #include "../platform.h" -char * IonSimulatorGetLanguageCode() { +namespace Ion { +namespace Simulator { +namespace Platform { + +const char * languageCode() { return nullptr; } + +} +} +}