Copying operations in Copy class should have const source / from parameters, e.g. in
void conjoint_words(HeapWord* from, HeapWord* to, size_t count)
the type for "from" should be "const HeapWord*".
void conjoint_words(HeapWord* from, HeapWord* to, size_t count)
the type for "from" should be "const HeapWord*".
- duplicates
-
JDK-8165929 Constify arguments of Copy methods
- Resolved