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

Commit

Permalink
[heap] Fix compilation of LargeObjectSpace on Windows.
Browse files Browse the repository at this point in the history
[email protected], [email protected]

Review URL: https://codereview.chromium.org/1288723005 .

Cr-Commit-Position: refs/heads/master@{#30255}
  • Loading branch information
Michael Starzinger committed Aug 19, 2015
1 parent ac3e24c commit 95694f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/heap/spaces.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2814,6 +2814,9 @@ LargeObjectSpace::LargeObjectSpace(Heap* heap, AllocationSpace id)
chunk_map_(ComparePointers, 1024) {}


LargeObjectSpace::~LargeObjectSpace() {}


bool LargeObjectSpace::SetUp() {
first_page_ = NULL;
size_ = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/heap/spaces.h
Original file line number Diff line number Diff line change
Expand Up @@ -2702,7 +2702,7 @@ class MapSpace : public PagedSpace {
class LargeObjectSpace : public Space {
public:
LargeObjectSpace(Heap* heap, AllocationSpace id);
virtual ~LargeObjectSpace() {}
virtual ~LargeObjectSpace();

// Initializes internal data structures.
bool SetUp();
Expand Down

0 comments on commit 95694f0

Please sign in to comment.