From 1eae5eeb13f312d487a3e12b40e3091e8aa1402f Mon Sep 17 00:00:00 2001 From: Heiko Strathmann Date: Sat, 5 Mar 2016 12:32:28 +0000 Subject: [PATCH] correct c# type for RealMatrix --- examples/meta/generator/targets/csharp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/meta/generator/targets/csharp.json b/examples/meta/generator/targets/csharp.json index 9a6710c2a53..1b148f76a67 100644 --- a/examples/meta/generator/targets/csharp.json +++ b/examples/meta/generator/targets/csharp.json @@ -33,7 +33,7 @@ "LongIntMatrix": "long[,]", "ULongIntMatrix": "ulongint[,]", "ShortRealMatrix": "float[,]", - "RealMatrix": "float[,]", + "RealMatrix": "double[,]", "LongRealMatrix": "double[,]", "ComplexMatrix": "Complex[,]" },