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; } + +} +} +}