diff --git a/lib/pal/universal/WindowsRuntimeDeviceInformationImpl.cpp b/lib/pal/universal/WindowsRuntimeDeviceInformationImpl.cpp index 6373552a..e38e8f5c 100644 --- a/lib/pal/universal/WindowsRuntimeDeviceInformationImpl.cpp +++ b/lib/pal/universal/WindowsRuntimeDeviceInformationImpl.cpp @@ -44,7 +44,8 @@ namespace PAL_NS_BEGIN { } ///// IDeviceInformation API - DeviceInformationImpl::DeviceInformationImpl() :m_registeredCount(0), + DeviceInformationImpl::DeviceInformationImpl(MAT::IRuntimeConfig& /*configuration*/) : + m_registeredCount(0), m_info_helper() { m_os_architecture = WindowsEnvironmentInfo::GetProcessorArchitecture(); diff --git a/lib/pal/universal/WindowsRuntimeSystemInformationImpl.cpp b/lib/pal/universal/WindowsRuntimeSystemInformationImpl.cpp index 03a836ac..32560c89 100644 --- a/lib/pal/universal/WindowsRuntimeSystemInformationImpl.cpp +++ b/lib/pal/universal/WindowsRuntimeSystemInformationImpl.cpp @@ -21,12 +21,12 @@ namespace PAL_NS_BEGIN { const string WindowsPhoneOSName = "Windows for Phones"; const string DeviceFamily_Mobile = "Windows.Mobile"; - std::shared_ptr SystemInformationImpl::Create() + std::shared_ptr SystemInformationImpl::Create(IRuntimeConfig& configuration) { - return std::make_shared(); + return std::make_shared(configuration); } - SystemInformationImpl::SystemInformationImpl(IRuntimeConfig& configuration) + SystemInformationImpl::SystemInformationImpl(IRuntimeConfig& /*configuration*/) : m_info_helper() { auto version = Package::Current->Id->Version;