diff --git a/doc/hotspot-style.html b/doc/hotspot-style.html index f0dfad09eb8..08a02b5bedd 100644 --- a/doc/hotspot-style.html +++ b/doc/hotspot-style.html @@ -448,7 +448,6 @@ while ( test_foo(args...) ) { // No, excess spaces around control
[[deprecated]] attribute (n3760) — Not relevant in HotSpot code.
Avoid most operator overloading, preferring named functions. When operator overloading is used, ensure the semantics conform to the normal expected behavior of the operation.
Avoid most implicit conversion constructors and (implicit or explicit) conversion operators. (Note that conversion to bool isn't needed in HotSpot code because of the "no implicit boolean" guideline.)
Avoid covariant return types.
Avoid goto statements.