diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-11-17 18:13:46 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-17 18:13:46 +0000 |
commit | 8661658b91da5dc33094e69f5af511f15f8adc91 (patch) | |
tree | 580b2206ca9a91fa42c38819fd4cc444d84d4812 /cs-dotnet/src/gatsfloat.cs | |
parent | f68cfc5a0a8a07a2729636b1a1bedc41d2de738d (diff) | |
download | libgats-8661658b91da5dc33094e69f5af511f15f8adc91.tar.gz libgats-8661658b91da5dc33094e69f5af511f15f8adc91.tar.bz2 libgats-8661658b91da5dc33094e69f5af511f15f8adc91.tar.xz libgats-8661658b91da5dc33094e69f5af511f15f8adc91.zip |
A few real tabs wound up in the C# code...somehow.
Diffstat (limited to '')
-rw-r--r-- | cs-dotnet/src/gatsfloat.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/cs-dotnet/src/gatsfloat.cs b/cs-dotnet/src/gatsfloat.cs index 9763855..1fe6c00 100644 --- a/cs-dotnet/src/gatsfloat.cs +++ b/cs-dotnet/src/gatsfloat.cs | |||
@@ -64,12 +64,12 @@ namespace Com.Xagasoft.Gats | |||
64 | throw new GatsException( GatsException.Type.PrematureEnd ); | 64 | throw new GatsException( GatsException.Type.PrematureEnd ); |
65 | switch( (char)subType ) | 65 | switch( (char)subType ) |
66 | { | 66 | { |
67 | case 'N': Value = -Double.NaN; break; | 67 | case 'N': Value = -Double.NaN; break; |
68 | case 'n': Value = Double.NaN; break; | 68 | case 'n': Value = Double.NaN; break; |
69 | case 'I': Value = Double.NegativeInfinity; break; | 69 | case 'I': Value = Double.NegativeInfinity; break; |
70 | case 'i': Value = Double.PositiveInfinity; break; | 70 | case 'i': Value = Double.PositiveInfinity; break; |
71 | case 'Z': Value = -0.0; break; | 71 | case 'Z': Value = -0.0; break; |
72 | case 'z': Value = 0.0; break; | 72 | case 'z': Value = 0.0; break; |
73 | } | 73 | } |
74 | } | 74 | } |
75 | else if( type == 'f' ) | 75 | else if( type == 'f' ) |