-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Convert ivec type syntax from T[] to [T] #806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
This looks great. Working on integrating it now. |
I don't think I'm going to get to this today. The windows build is broken so we can't snapshot. |
No rush, thanks for looking into this :) On Fri, Aug 5, 2011 at 4:53 PM, brson
|
This preserves the old syntax for now.
By the way, I re-rebased this patch on top of the graydon/master. |
I've pushed the pre-snapshot commits. Still waiting for the right conditions to do the snapshot. |
Integrated. |
define SYS_renameat2 + flags on linux Motivation: there is no glibc wrapper for this syscall
This is the first attempt at converting the ivec type syntax from T[] to [T]. It seems to work with a check-full, so I expect no problems. There are three phases to this commit. First is adding support for the syntax [T]. Then, all the code is converted over to the [T] syntax. Finally, support for T[] is removed.
As a word of caution, the commit 4ea04c9 (Change the ivec type syntax to [T]) needs a stage 3 snapshot made before the rest of the commits can be committed.
Please let me know if you need any tweaks.