Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

Commit

Permalink
fix: extern template classes shouldn't be dllexported
Browse files Browse the repository at this point in the history
  • Loading branch information
nornagon committed Sep 19, 2018
1 parent 07b8682 commit f26e949
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ class OptionsParser {
friend void GetOptions(const v8::FunctionCallbackInfo<v8::Value>& args);
};

extern template class NODE_EXTERN OptionsParser<DebugOptions>;
extern template class OptionsParser<DebugOptions>;

class NODE_EXTERN DebugOptionsParser : public OptionsParser<DebugOptions> {
public:
Expand Down

0 comments on commit f26e949

Please sign in to comment.