mirror of
https://github.com/chromium/crashpad.git
synced 2025-03-09 14:06:33 +00:00
Remove unnecessary crashpad:: qualification from implicit_cast<>
This undoes 595803e1be18, a workaround that should no longer be necessary now that base no longer provides implicit_cast<> in the global namespace. R=scottmg@chromium.org Review URL: https://codereview.chromium.org/1356673003 .
This commit is contained in:
parent
4ff6c2d71f
commit
9b9e49d0d9
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user