[librsvg] parsers::coordinate_pair() - This doesn't need to be public



commit e52741e768bf2e1df0d27fa85f3a74917c943a92
Author: Federico Mena Quintero <federico gnome org>
Date:   Wed Jul 19 13:12:50 2017 -0500

    parsers::coordinate_pair() - This doesn't need to be public

 rust/src/parsers.rs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/rust/src/parsers.rs b/rust/src/parsers.rs
index b9c0025..69abd86 100644
--- a/rust/src/parsers.rs
+++ b/rust/src/parsers.rs
@@ -126,7 +126,7 @@ named! (pub view_box<(f64, f64, f64, f64)>,
 //
 // All of these yield (1, -2): "1 -2", "1, -2", "1-2"
 
-named! (pub coordinate_pair<(f64, f64)>,
+named! (coordinate_pair<(f64, f64)>,
         do_parse! (x: double        >>
                    opt! (comma_wsp) >>
                    y: double        >>


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]