WebKit Bugzilla
Attachment 357681 Details for
Bug 192854
: ContentExtensions: DFANode.cpp:66:44: error: narrowing conversion of '-1' from 'int' to 'char' inside { }
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
Patch
bug-192854-20181219181743.patch (text/plain), 1.22 KB, created by
Claudio Saavedra
on 2018-12-19 08:17:44 PST
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Claudio Saavedra
Created:
2018-12-19 08:17:44 PST
Size:
1.22 KB
patch
obsolete
>Subversion Revision: 239378 >diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog >index e6746ddceac50203acf3a2f5daa4ab8011e7b175..928db3047730d8da02b7da7eb2bb0a112464e135 100644 >--- a/Source/WebCore/ChangeLog >+++ b/Source/WebCore/ChangeLog >@@ -1,3 +1,12 @@ >+2018-12-19 Claudio Saavedra <csaavedra@igalia.com> >+ >+ ContentExtensions: DFANode.cpp:66:44: error: narrowing conversion of '-1' from 'int' to 'char' inside { } >+ https://bugs.webkit.org/show_bug.cgi?id=192854 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * contentextensions/DFANode.h: Define CharRange's chars as signed >+ > 2018-12-19 Alicia Boya GarcÃa <aboya@igalia.com> > > [MSE] Remove unused method: stopAskingForMoreSamples() >diff --git a/Source/WebCore/contentextensions/DFANode.h b/Source/WebCore/contentextensions/DFANode.h >index 3fbc8480bf667c5a056dc267e250c8e6b17ace9a..7e607535349e41b408895dc2d5f37ff93e530613 100644 >--- a/Source/WebCore/contentextensions/DFANode.h >+++ b/Source/WebCore/contentextensions/DFANode.h >@@ -38,8 +38,8 @@ namespace ContentExtensions { > struct DFA; > > struct CharRange { >- char first; >- char last; >+ signed char first; >+ signed char last; > unsigned size() const { return last - first + 1; } > }; >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 192854
:
357680
| 357681