# HG changeset patch # User kbarrett # Date 1572639677 14400 # Node ID 4ec9fc2b2f0deeb8eabbb816269f5a7f6484be3e # Parent 76638c631869b6da4a7b116dac9a17438cc819c7 8233359: Add global sized operator delete definitions Summary: Added new definitions. Reviewed-by: dholmes diff -r 76638c631869 -r 4ec9fc2b2f0d src/hotspot/share/memory/operator_new.cpp --- a/src/hotspot/share/memory/operator_new.cpp Fri Nov 01 13:16:50 2019 -0700 +++ b/src/hotspot/share/memory/operator_new.cpp Fri Nov 01 16:21:17 2019 -0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1997, 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1997, 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 @@ -89,4 +89,12 @@ fatal("Should not call global delete []"); } +void operator delete(void* p, size_t size) throw() { + fatal("Should not call global sized delete"); +} + +void operator delete [](void* p, size_t size) throw() { + fatal("Should not call global sized delete []"); +} + #endif // Non-product