| Index: chrome/browser/mac/exception_processor.mm
|
| diff --git a/chrome/browser/mac/exception_processor.mm b/chrome/browser/mac/exception_processor.mm
|
| index b293c94bffa508d466a0a51698e6f5a70c6a85fa..35251ecc5c81af1728da78bc59ce28812ff36841 100644
|
| --- a/chrome/browser/mac/exception_processor.mm
|
| +++ b/chrome/browser/mac/exception_processor.mm
|
| @@ -169,7 +169,7 @@ static id ObjcExceptionPreprocessor(id exception) {
|
| // Check if the function is one that is known to obscure (by way of
|
| // catch-and-rethrow) exception stack traces. If it is, sinkhole it
|
| // by crashing here at the point of throw.
|
| - for (const auto& sinkhole : kExceptionSinkholes) {
|
| + for (const char* sinkhole : kExceptionSinkholes) {
|
| if (strcmp(sinkhole, proc_name) == 0) {
|
| TERMINATING_FROM_UNCAUGHT_NSEXCEPTION(exception);
|
| }
|
|
|