microsoft / Windows-appsample-photo-editor

Photo Editor is a UWP photo viewing and editing sample that highlights development with C++/WinRT.
MIT License
182 stars 63 forks source link

winrt::from_abi was declared deprecated on version 10.0.17763.0 (Windows 10, version 1809) and above #9

Open henry-y-c opened 4 years ago

henry-y-c commented 4 years ago

Issue

Error C4996 'winrt::from_abi': was declared deprecated.

Cause

As of version 10.0.17763.0 (Windows 10, version 1809) of the Windows SDK, winrt::from_abi is obsolete. Use winrt::get_self instead.

Solution

Just simply replace all from_abi with get_self.

Reference