From 4253f838845c9fb2133ab56842c3c91a70125f0e Mon Sep 17 00:00:00 2001 From: Adrian Pop Date: Wed, 12 Feb 2020 00:36:16 +0100 Subject: [PATCH] fixes to some of the MM runtime functions --- src/metaRuntime.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/metaRuntime.jl b/src/metaRuntime.jl index ce9af09..988ade7 100644 --- a/src/metaRuntime.jl +++ b/src/metaRuntime.jl @@ -316,12 +316,12 @@ function realString(r::ModelicaReal)::String end function stringCharInt(ch::String)::ModelicaInteger - local i::ModelicaInteger = Int64(char(ch[1])) + local i::ModelicaInteger = Int64(ch[1]) i end function intStringChar(i::ModelicaInteger)::String - local ch::String = string(char(i)) + local ch::String = string(Char(i)) ch end