commit | b65b298c297b0f6448d5e3de0f087572a1c04f58 | [log] [tgz] |
---|---|---|
author | Nika Layzell <nika@thelayzells.com> | Sat Dec 30 14:40:04 2017 -0500 |
committer | Nika Layzell <nika@thelayzells.com> | Sat Dec 30 14:40:04 2017 -0500 |
tree | 3744c3490ea48e8e52ce7751f7a1a1d42ad78491 | |
parent | b35a9a3d4999a3e46932c1db5fc8c8ea9ecfa8b0 [diff] |
fixup! Wrap the LineColumn struct when re-exporting from proc-macro
diff --git a/src/lib.rs b/src/lib.rs index d0660d4..1127e69 100644 --- a/src/lib.rs +++ b/src/lib.rs
@@ -135,9 +135,6 @@ } } -// NOTE: We can't easily wrap LineColumn right now, as the version in proc-macro -// doesn't actually expose the internal `line` and `column` fields, making it -// mostly useless. pub struct LineColumn { pub line: usize, pub column: usize,