| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8a9a3bf commit 714e96e
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -69,6 +69,7 @@ Kang-Hao (Kenny) Lu <kennyluck@csail.mit.edu> | |||
| 69 | 69 | Luis Reis <luis.m.reis@gmail.com> | |
| 70 | 70 | Luke Zarko <lukezarko@gmail.com> | |
| 71 | 71 | Maciej Małecki <me@mmalecki.com> | |
| 72 | + Marcin Cieślak <saper@marcincieslak.com> | ||
| 72 | 73 | Mathias Bynens <mathias@qiwi.be> | |
| 73 | 74 | Matt Hanselman <mjhanselman@gmail.com> | |
| 74 | 75 | Matthew Sporleder <msporleder@gmail.com> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -627,7 +627,7 @@ RUNTIME_FUNCTION(Runtime_CreateBreakIterator) { | |||
| 627 | 627 | ||
| 628 | 628 | local_object->SetInternalField(0, reinterpret_cast<Smi*>(break_iterator)); | |
| 629 | 629 | // Make sure that the pointer to adopted text is NULL. | |
| 630 | - local_object->SetInternalField(1, reinterpret_cast<Smi*>(NULL)); | ||
| 630 | + local_object->SetInternalField(1, static_cast<Smi*>(nullptr)); | ||
| 631 | 631 | ||
| 632 | 632 | Factory* factory = isolate->factory(); | |
| 633 | 633 | Handle<String> key = factory->NewStringFromStaticChars("breakIterator"); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -126,7 +126,7 @@ TEST(HandleNull) { | |||
| 126 | 126 | Isolate* isolate = CcTest::i_isolate(); | |
| 127 | 127 | HandleScope outer_scope(isolate); | |
| 128 | 128 | LocalContext context; | |
| 129 | - Handle<Object> n(reinterpret_cast<Object*>(NULL), isolate); | ||
| 129 | + Handle<Object> n(static_cast<Object*>(nullptr), isolate); | ||
| 130 | 130 | CHECK(!n.is_null()); | |
| 131 | 131 | } | |
| 132 | 132 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments