about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2016-03-21 03:38:25 -0500
committerJorge Aparicio <japaricious@gmail.com>2016-03-22 22:03:31 -0500
commitbd71d11a8f75b9957489c795a1551a0cd489eca3 (patch)
tree57bb449ad6b4b1c9a2317e4c767749e9567e1aa1
parentacbf386ab48e631e0cab08bc7965c7fc63aa4075 (diff)
downloadrust-bd71d11a8f75b9957489c795a1551a0cd489eca3.tar.gz
rust-bd71d11a8f75b9957489c795a1551a0cd489eca3.zip
break long line
-rw-r--r--src/libsyntax/codemap.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs
index 80b806b7b50..a12016418c6 100644
--- a/src/libsyntax/codemap.rs
+++ b/src/libsyntax/codemap.rs
@@ -617,7 +617,8 @@ impl Decodable for FileMap {
 
                     Ok(lines)
                 })?;
-            let multibyte_chars: Vec<MultiByteChar> = d.read_struct_field("multibyte_chars", 4, |d| Decodable::decode(d))?;
+            let multibyte_chars: Vec<MultiByteChar> =
+                d.read_struct_field("multibyte_chars", 4, |d| Decodable::decode(d))?;
             Ok(FileMap {
                 name: name,
                 start_pos: start_pos,