aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin
diff options
context:
space:
mode:
authorbnewbold <bnewbold@robocracy.org>2016-12-26 00:08:37 -0800
committerbnewbold <bnewbold@robocracy.org>2016-12-26 00:08:37 -0800
commit9cf287fef8e614f57d0d52d579d6721ba54683f4 (patch)
treeceda8550fd28770d24a1ab37f5de1bee1f71959a /src/bin
parent957c2f75ceccfab3d8a8e546961db5f053876689 (diff)
downloadmodelthing-9cf287fef8e614f57d0d52d579d6721ba54683f4.tar.gz
modelthing-9cf287fef8e614f57d0d52d579d6721ba54683f4.zip
updates for new modelica-parser-lalrpop hierarchy
Diffstat (limited to 'src/bin')
-rw-r--r--src/bin/mt-tool.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/mt-tool.rs b/src/bin/mt-tool.rs
index 37b1705..b6763b2 100644
--- a/src/bin/mt-tool.rs
+++ b/src/bin/mt-tool.rs
@@ -25,7 +25,7 @@ fn parse_modelica_files(paths: Vec<String>) {
}
let time_stamp = Instant::now();
- let result = modelica_parser::parser::parse_model(&s);
+ let result = modelica_parser::parse_model(&s);
let elapsed = time_stamp.elapsed();
let elapsed = elapsed.as_secs() as f64 + elapsed.subsec_nanos() as f64 / 1000_000_000.0;