Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: add NODE_EXTERN to class definition
This should be part of public class definitions for Windows
embedders who use a DLL interface for accessing Node.
  • Loading branch information
addaleax committed Aug 27, 2018
commit 0097a86666d687aa2b94debbabf94afd03cd6c1f
2 changes: 1 addition & 1 deletion src/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ NODE_EXTERN void FreeArrayBufferAllocator(ArrayBufferAllocator* allocator);
class IsolateData;
class Environment;

class MultiIsolatePlatform : public v8::Platform {
class NODE_EXTERN MultiIsolatePlatform : public v8::Platform {
public:
virtual ~MultiIsolatePlatform() { }
// Returns true if work was dispatched or executed. New tasks that are
Expand Down