mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-03 05:08:14 +00:00
Declaration grouping uses braces rather than parentheses
This commit is contained in:
+2
-2
@@ -170,10 +170,10 @@ proc shift_left(a: ^Decimal, k: uint) {
|
||||
}
|
||||
|
||||
proc shift(a: ^Decimal, k: int) {
|
||||
const (
|
||||
const {
|
||||
uint_size = 8*size_of(uint);
|
||||
max_shift = uint_size-4;
|
||||
)
|
||||
}
|
||||
|
||||
match {
|
||||
case a.count == 0:
|
||||
|
||||
Reference in New Issue
Block a user