We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7fa47c commit eab7612Copy full SHA for eab7612
sbe-tool/src/main/java/uk/co/real_logic/sbe/generation/csharp/CSharpGenerator.java
@@ -280,7 +280,7 @@ private boolean isRepresentableByInt32(final Encoding encoding)
280
{
281
// These min and max values are the same in .NET
282
return encoding.applicableMinValue().longValue() >= Integer.MIN_VALUE &&
283
- encoding.applicableMaxValue().longValue() <= Integer.MAX_VALUE;
+ encoding.applicableMaxValue().longValue() <= Integer.MAX_VALUE;
284
}
285
286
private CharSequence generateGroupProperty(final String groupName, final Token token, final String indent)
0 commit comments