We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bfa960 commit a8a3cafCopy full SHA for a8a3caf
1 file changed
src/lib.rs
@@ -30,7 +30,7 @@
30
//! io::copy(&mut large_object, &mut file).unwrap();
31
//! }
32
//! ```
33
-#![feature(unsafe_destructor, io, core)]
+#![feature(io, core)]
34
#![doc(html_root_url="https://sfackler.github.io/rust-postgres-large-object/doc")]
35
36
extern crate postgres;
@@ -139,7 +139,6 @@ impl<'a> fmt::Debug for LargeObject<'a> {
139
}
140
141
142
-#[unsafe_destructor]
143
impl<'a> Drop for LargeObject<'a> {
144
fn drop(&mut self) {
145
let _ = self.finish_inner();
0 commit comments