Skip to content

Commit

Permalink
Mac build fixes
Browse files Browse the repository at this point in the history
- CtrlrMac ScopedPointer removed
- removed some binary build artefacts
  • Loading branch information
atom committed Jun 24, 2022
1 parent d4a15a8 commit 8aa00d8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 2 deletions.
Binary file not shown.

This file was deleted.

2 changes: 1 addition & 1 deletion Source/Native/CtrlrMac.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ const Result CtrlrMac::setBundleInfo (CtrlrPanel *sourceInfo, const File &bundle

if (plist.existsAsFile() && plist.hasWriteAccess())
{
ScopedPointer <XmlElement> plistXml (XmlDocument::parse(plist));
std::unique_ptr <XmlElement> plistXml (XmlDocument::parse(plist));
if (plistXml == nullptr)
{
return (Result::fail("MAC native, can't parse Info.plist as a XML document"));
Expand Down

0 comments on commit 8aa00d8

Please sign in to comment.