mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2024-11-27 00:51:55 +00:00
Merge pull request #19 from omniavinco/master
Sort the enums in a stable manner
This commit is contained in:
commit
06db711223
@ -156,7 +156,11 @@ sub output_tokens($$)
|
|||||||
if (${$tbl}{$b} =~ /_/) {
|
if (${$tbl}{$b} =~ /_/) {
|
||||||
1
|
1
|
||||||
} else {
|
} else {
|
||||||
hex ${$tbl}{$a} <=> hex ${$tbl}{$b}
|
if (hex ${$tbl}{$a} eq hex ${$tbl}{$b}) {
|
||||||
|
$a cmp $b
|
||||||
|
} else {
|
||||||
|
hex ${$tbl}{$a} <=> hex ${$tbl}{$b}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user