Skip to content

Commit 600b2ff

Browse files
committed
Use proper double type
1 parent b329fcc commit 600b2ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/TL_filerefs.tl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@ intLiteralOp value:int = TypedOpOp;
4747
longLiteralOp value:long = TypedOpOp;
4848
stringLiteralOp value:string = TypedOpOp;
4949
boolLiteralOp value:Bool = TypedOpOp;
50-
floatLiteralOp value:float = TypedOpOp;
50+
doubleLiteralOp value:double = TypedOpOp;
5151
themeFormatLiteralOp = TypedOpOp;

tools/FileRefExtractor/Ops/PrimitiveLiteralOp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public function build(TLContext $tl): array
4949
'long' => 'longLiteralOp',
5050
'string' => 'stringLiteralOp',
5151
'bool' => 'boolLiteralOp',
52-
'float' => 'floatLiteralOp',
52+
'double' => 'doubleLiteralOp',
5353
},
5454
'value' => $this->value,
5555
],

0 commit comments

Comments
 (0)