chromium/v8/src/heap/cppgc/virtual-memory.cc

// Copyright 2020 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/heap/cppgc/virtual-memory.h"

#include "include/cppgc/platform.h"
#include "src/base/macros.h"

namespace cppgc {
namespace internal {

VirtualMemory::VirtualMemory(PageAllocator* page_allocator, size_t size,
                             size_t alignment, void* hint)
    :{}

VirtualMemory::~VirtualMemory() V8_NOEXCEPT {}

VirtualMemory::VirtualMemory(VirtualMemory&& other) V8_NOEXCEPT
    :{}

VirtualMemory& VirtualMemory::operator=(VirtualMemory&& other) V8_NOEXCEPT {}

void VirtualMemory::Reset() {}

}  // namespace internal
}  // namespace cppgc