[ion/simulator] Fix the dummy language implementation

This commit is contained in:
Romain Goyet
2020-09-14 17:21:16 -04:00
committed by Léa Saviot
parent c2f8bbaf3c
commit ba3109e47a

View File

@@ -1,5 +1,13 @@
#include "../platform.h"
char * IonSimulatorGetLanguageCode() {
namespace Ion {
namespace Simulator {
namespace Platform {
const char * languageCode() {
return nullptr;
}
}
}
}