diff -r 76751d3faf7b -r 39ba09047e19 src/hotspot/share/gc/z/zVirtualMemory.cpp --- a/src/hotspot/share/gc/z/zVirtualMemory.cpp Tue May 14 09:12:06 2019 +0200 +++ b/src/hotspot/share/gc/z/zVirtualMemory.cpp Tue May 14 09:55:02 2019 +0200 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -72,6 +72,6 @@ return ZVirtualMemory(start, size); } -void ZVirtualMemoryManager::free(ZVirtualMemory vmem) { +void ZVirtualMemoryManager::free(const ZVirtualMemory& vmem) { _manager.free(vmem.start(), vmem.size()); }