summaryrefslogtreecommitdiff
path: root/src/node_snapshot_stub.cc
blob: 664f878c0671db76cbf68116d224606243ddf501 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// This file is part of the embedder test, which is intentionally built without
// NODE_WANT_INTERNALS, so we define it here manually.
#define NODE_WANT_INTERNALS 1

#include "node_snapshot_builder.h"

namespace node {

const SnapshotData* SnapshotBuilder::GetEmbeddedSnapshotData() {
  return nullptr;
}

}  // namespace node