Skip to content

Commit 29176b6

Browse files
authored
Merge 3cdf6d9 into f6acbcd
2 parents f6acbcd + 3cdf6d9 commit 29176b6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

runtime/vm/object.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23468,7 +23468,7 @@ const char* ExternalTypedData::ToCString() const {
2346823468
}
2346923469

2347023470
PointerPtr Pointer::New(const AbstractType& type_arg,
23471-
size_t native_address,
23471+
uword native_address,
2347223472
Heap::Space space) {
2347323473
Thread* thread = Thread::Current();
2347423474
Zone* zone = thread->zone();

runtime/vm/object.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10163,7 +10163,7 @@ class ByteBuffer : public AllStatic {
1016310163
class Pointer : public Instance {
1016410164
public:
1016510165
static PointerPtr New(const AbstractType& type_arg,
10166-
size_t native_address,
10166+
uword native_address,
1016710167
Heap::Space space = Heap::kNew);
1016810168

1016910169
static intptr_t InstanceSize() {

0 commit comments

Comments
 (0)