File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Version 0.6 (April 2013)
30
30
`@mut T`, `core::mut` or `core::cell`
31
31
* `extern mod { ... }` is no longer valid syntax for foreign
32
32
function modules. Use extern blocks: `extern { ... }`
33
- * Newtype enums removed. Used tuple-structs.
33
+ * Newtype enums removed. Use tuple-structs.
34
34
* Trait implementations no longer support visibility modifiers
35
35
* Pattern matching over vectors improved and expanded
36
36
* `const` renamed to `static` to correspond to lifetime name,
@@ -40,6 +40,10 @@ Version 0.6 (April 2013)
40
40
`#[deriving(Clone)]`
41
41
* Casts to traits must use a pointer sigil, e.g. `@foo as @Bar`
42
42
instead of `foo as Bar`.
43
+ * Fixed length vector types are now written as `[int, .. 3]`
44
+ instead of `[int * 3]`.
45
+ * Fixed length vector types can express the length as a constant
46
+ expression. (ex: `[int, .. GL_BUFFER_SIZE - 2]`)
43
47
44
48
* Semantic changes
45
49
* Types with owned pointers or custom destructors move by default,
You can’t perform that action at this time.
0 commit comments