Skip to content

Commit

Permalink
add ampersands
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Schulhof committed Dec 4, 2019
1 parent 2cb224f commit 899a12a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions napi-inl.h
Expand Up @@ -2741,7 +2741,7 @@ PropertyDescriptor::Accessor(const char* utf8name,
utf8name,
nullptr,
nullptr,
GetterCallbackWrapper<Getter>,
&GetterCallbackWrapper<Getter>,
nullptr,
nullptr,
attributes,
Expand All @@ -2766,7 +2766,7 @@ PropertyDescriptor::Accessor(Name name,
nullptr,
name,
nullptr,
GetterCallbackWrapper<Getter>,
&GetterCallbackWrapper<Getter>,
nullptr,
nullptr,
attributes,
Expand All @@ -2785,8 +2785,8 @@ PropertyDescriptor::Accessor(const char* utf8name,
utf8name,
nullptr,
nullptr,
GetterCallbackWrapper<Getter>,
SetterCallbackWrapper<Setter>,
&GetterCallbackWrapper<Getter>,
&SetterCallbackWrapper<Setter>,
nullptr,
attributes,
data
Expand Down Expand Up @@ -2814,8 +2814,8 @@ PropertyDescriptor::Accessor(Name name,
nullptr,
name,
nullptr,
GetterCallbackWrapper<Getter>,
SetterCallbackWrapper<Setter>,
&GetterCallbackWrapper<Getter>,
&SetterCallbackWrapper<Setter>,
nullptr,
attributes,
data
Expand Down

0 comments on commit 899a12a

Please sign in to comment.