Fix break on Clang/LLVM
This commit is contained in:
Родитель
1f32cad6da
Коммит
145caab14a
|
@ -183,9 +183,9 @@ namespace xPlat {
|
|||
ThrowErrorIfNot(Error::AppxMissingAppxManifestXML, (m_appxBlockMap->HasStream()), "AppxManifest.xml not in archive!");
|
||||
if ((validation & APPX_VALIDATION_OPTION_SKIPSIGNATURE) == 0)
|
||||
{
|
||||
std::string reason = "Publisher mismatch: " + m_appxManifest->GetPublisher() + " != " + m_appxSignature->GetPublisher();
|
||||
ThrowErrorIfNot(Error::AppxPublisherMismatch,
|
||||
(0 == m_appxManifest->GetPublisher().compare(m_appxSignature->GetPublisher())),
|
||||
"Publisher mismatch: " + m_appxManifest->GetPublisher() + " != " + m_appxSignature->GetPublisher());
|
||||
(0 == m_appxManifest->GetPublisher().compare(m_appxSignature->GetPublisher())), reason);
|
||||
}
|
||||
|
||||
struct Config
|
||||
|
|
Загрузка…
Ссылка в новой задаче