We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a19eaf commit 8e41ccdCopy full SHA for 8e41ccd
2 files changed
.travis.yml
@@ -7,3 +7,4 @@ before_script:
7
- ./travis/setup.sh
8
script:
9
- rustpkg --cfg travis test
10
+ - rustpkg build
lib.rs
@@ -69,7 +69,6 @@ fn main() {
69
70
extern mod extra;
71
72
-use std;
73
use extra::container::Deque;
74
use extra::ringbuf::RingBuf;
75
use extra::url::{UserInfo, Url};
@@ -542,7 +541,7 @@ impl InnerPostgresConnection {
542
541
543
fn set_notice_handler(&mut self, handler: ~PostgresNoticeHandler)
544
-> ~PostgresNoticeHandler {
545
- std::util::replace(&mut self.notice_handler, handler)
+ ::std::util::replace(&mut self.notice_handler, handler)
546
}
547
548
fn try_prepare<'a>(&mut self, query: &str, conn: &'a PostgresConnection)
0 commit comments