Skip to content

Commit cb2f725

Browse files
merijnashinkarov
authored andcommitted
Fix deprecated syntax warnings.
1 parent 9602b1c commit cb2f725

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

L5_advanced/E-01.sac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ int main()
99
complex c;
1010
double[2] d;
1111

12-
c = (:complex) [1.2,2.3];
13-
d = (:double[2]) c;
12+
c = (complex) [1.2,2.3];
13+
d = (double[2]) c;
1414
print( d);
1515

1616
return( 0);

0 commit comments

Comments
 (0)