Replace TreeMap with BTreeMap in the serde2

This commit is contained in:
Thomas Bahn
2014-12-23 18:33:37 +01:00
parent 7fa62b6212
commit 512a54e983
6 changed files with 27 additions and 27 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
use std::collections::TreeMap;
use std::collections::BTreeMap;
///////////////////////////////////////////////////////////////////////////////
@@ -491,7 +491,7 @@ impl<
impl<
K: Serialize + Ord,
V: Serialize,
> Serialize for TreeMap<K, V> {
> Serialize for BTreeMap<K, V> {
#[inline]
fn visit<
S,