[heap] Fix compilation of LargeObjectSpace on Windows.
authorMichael Starzinger <mstarzinger@chromium.org>
Wed, 19 Aug 2015 17:39:09 +0000 (19:39 +0200)
committerMichael Starzinger <mstarzinger@chromium.org>
Wed, 19 Aug 2015 17:39:30 +0000 (17:39 +0000)
R=thakis@chromium.org, titzer@chromium.org

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

Cr-Commit-Position: refs/heads/master@{#30255}

src/heap/spaces.cc
src/heap/spaces.h

index 6e487a1..e66fd39 100644 (file)
@@ -2814,6 +2814,9 @@ LargeObjectSpace::LargeObjectSpace(Heap* heap, AllocationSpace id)
       chunk_map_(ComparePointers, 1024) {}
 
 
+LargeObjectSpace::~LargeObjectSpace() {}
+
+
 bool LargeObjectSpace::SetUp() {
   first_page_ = NULL;
   size_ = 0;
index 98e89cc..2ea2e90 100644 (file)
@@ -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();