Skip to content

Commit 48331ef

Browse files
committed
changed stability annotations
Changed stability annotations for the new Error and Display impls for std::ffi::FromBytesWithNulError as they aren't subject to stability the same way.
1 parent 6a10e63 commit 48331ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/ffi/c_str.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -455,14 +455,14 @@ impl From<NulError> for io::Error {
455455
}
456456
}
457457

458-
#[unstable(feature = "frombyteswithnulerror_impls", reason = "recently added", issue = "39925")]
458+
#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
459459
impl Error for FromBytesWithNulError {
460460
fn description(&self) -> &str {
461461
"data provided is not null terminated or contains an interior nul byte"
462462
}
463463
}
464464

465-
#[unstable(feature = "frombyteswithnulerror_impls", reason = "recently added", issue = "39925")]
465+
#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
466466
impl fmt::Display for FromBytesWithNulError {
467467
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
468468
self.description().fmt(f)

0 commit comments

Comments
 (0)