Fix linking problem with NodePlatform

This commit is contained in:
Cheng Zhao 2017-11-13 11:43:08 +09:00
parent efd949ea83
commit 3138c85218
3 changed files with 6 additions and 7 deletions

View file

@ -5,8 +5,6 @@
#ifndef ATOM_BROWSER_NODE_DEBUGGER_H_
#define ATOM_BROWSER_NODE_DEBUGGER_H_
#include <memory>
#include "base/macros.h"
namespace node {
@ -26,7 +24,7 @@ class NodeDebugger {
private:
node::Environment* env_;
std::unique_ptr<node::NodePlatform> platform_;
node::NodePlatform* platform_;
DISALLOW_COPY_AND_ASSIGN(NodeDebugger);
};