about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs
index e8e0cbf84b3..09bb4519170 100644
--- a/library/core/src/array/mod.rs
+++ b/library/core/src/array/mod.rs
@@ -355,6 +355,7 @@ trait SpecArrayClone: Clone {
 
 #[cfg(not(bootstrap))]
 impl<T: Clone> SpecArrayClone for T {
+    #[inline]
     default fn clone<const N: usize>(array: &[T; N]) -> [T; N] {
         // SAFETY: we know for certain that this iterator will yield exactly `N`
         // items.
@@ -364,6 +365,7 @@ impl<T: Clone> SpecArrayClone for T {
 
 #[cfg(not(bootstrap))]
 impl<T: Copy> SpecArrayClone for T {
+    #[inline]
     fn clone<const N: usize>(array: &[T; N]) -> [T; N] {
         *array
     }