functions taking std::function should not be noexcept

This commit is contained in:
Chuck Walbourn
2020-05-30 22:14:59 -07:00
parent 21f7e28b80
commit 8359882401
6 changed files with 6 additions and 6 deletions

View File

@@ -38,5 +38,5 @@ namespace DirectX
_In_ REFGUID guidContainerFormat,
_In_z_ const wchar_t* fileName,
_In_opt_ const GUID* targetFormat = nullptr,
_In_opt_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr) noexcept;
_In_opt_ std::function<void __cdecl(IPropertyBag2*)> setCustomProps = nullptr);
}