Reviewers: Jakob,

Description:
Version 4.1.0.15 (cherry-pick)

Merged f807277b25e4ab3199d515d7e97e210350fac49f

Remove implicit uint8_t to char cast in string replace.

BUG=446196
LOG=N
[email protected]

Please review this at https://codereview.chromium.org/887013002/

Base URL: https://chromium.googlesource.com/v8/[email protected]

Affected files (+2, -2 lines):
  M src/runtime/runtime-regexp.cc
  M src/version.cc


Index: src/runtime/runtime-regexp.cc
diff --git a/src/runtime/runtime-regexp.cc b/src/runtime/runtime-regexp.cc
index be9adfff41e5ac6794a7f704ede272ba88506f58..9296a4b8a9e15d84125258578d087da5b1b4abc6 100644
--- a/src/runtime/runtime-regexp.cc
+++ b/src/runtime/runtime-regexp.cc
@@ -278,7 +278,7 @@ void CompiledReplacement::Apply(ReplacementStringBuilder* builder,
 }


-void FindOneByteStringIndices(Vector<const uint8_t> subject, char pattern,
+void FindOneByteStringIndices(Vector<const uint8_t> subject, uint8_t pattern,
                               ZoneList<int>* indices, unsigned int limit,
                               Zone* zone) {
   DCHECK(limit > 0);
Index: src/version.cc
diff --git a/src/version.cc b/src/version.cc
index 3b1c220f57db2659792e6c49fdab5e532188fc6d..db2d4ffcbbe16ca2fbbc9b21123047b68e4d6adc 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     4
 #define MINOR_VERSION     1
 #define BUILD_NUMBER      0
-#define PATCH_LEVEL       14
+#define PATCH_LEVEL       15
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0


--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to