| Index: util/mac/launchd.mm
|
| diff --git a/util/mac/launchd.mm b/util/mac/launchd.mm
|
| index 5f60526262ec9750bb1bfaf942638f83f16f5088..1b723555695f5b00a51aba706b485fdd4cb55d85 100644
|
| --- a/util/mac/launchd.mm
|
| +++ b/util/mac/launchd.mm
|
| @@ -44,8 +44,8 @@ launch_data_t CFPropertyToLaunchData(CFPropertyListRef property_cf) {
|
| return nullptr;
|
| }
|
|
|
| - CFPropertyListRef value_cf = crashpad::implicit_cast<CFPropertyListRef>(
|
| - [dictionary_ns objectForKey:key]);
|
| + CFPropertyListRef value_cf =
|
| + implicit_cast<CFPropertyListRef>([dictionary_ns objectForKey:key]);
|
| launch_data_t value_launch = CFPropertyToLaunchData(value_cf);
|
| if (!value_launch) {
|
| return nullptr;
|
| @@ -65,7 +65,7 @@ launch_data_t CFPropertyToLaunchData(CFPropertyListRef property_cf) {
|
|
|
| for (id element_ns in array_ns) {
|
| CFPropertyListRef element_cf =
|
| - crashpad::implicit_cast<CFPropertyListRef>(element_ns);
|
| + implicit_cast<CFPropertyListRef>(element_ns);
|
| launch_data_t element_launch = CFPropertyToLaunchData(element_cf);
|
| if (!element_launch) {
|
| return nullptr;
|
|
|