From 1fe8e57e86a7e018385572624d3993735911eafc Mon Sep 17 00:00:00 2001 From: "REDMOND\\acoates" Date: Mon, 16 Sep 2019 09:40:42 -0700 Subject: [PATCH] Fix build break in MSVC --- ReactCommon/jsi/jsi/jsi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReactCommon/jsi/jsi/jsi.h b/ReactCommon/jsi/jsi/jsi.h index 7925be7bed8380..0baa5e55641298 100644 --- a/ReactCommon/jsi/jsi/jsi.h +++ b/ReactCommon/jsi/jsi/jsi.h @@ -347,7 +347,7 @@ class PropNameID : public Pointer { using Pointer::Pointer; PropNameID(Runtime& runtime, const PropNameID& other) - : PropNameID(runtime.clonePropNameID(other.ptr_)) {} + : Pointer(runtime.clonePropNameID(other.ptr_)) {} PropNameID(PropNameID&& other) = default; PropNameID& operator=(PropNameID&& other) = default;