View previous topic :: View next topic |
Author |
Message |
Trass3r
Joined: 29 Feb 2008 Posts: 66 Location: Germany
|
Posted: Wed Apr 14, 2010 7:28 pm Post subject: Post in this thread to notify me if you open a new thread |
|
|
I won't notice if you create a new topic here otherwise.
Last edited by Trass3r on Fri Jan 14, 2011 5:18 pm; edited 1 time in total |
|
Back to top |
|
|
JNewt
Joined: 05 Jun 2008 Posts: 69
|
Posted: Fri Jan 14, 2011 4:37 pm Post subject: Ping |
|
|
Trass3r: regarding your bitbucket repo: I've found a number of bugs/issues with main.d alone (I understand that this is a quick demonstration) and would like to help improve this project. Would you like me report each item as an issue, fork the code, or are you looking to open the repository for pushes from others? |
|
Back to top |
|
|
Trass3r
Joined: 29 Feb 2008 Posts: 66 Location: Germany
|
Posted: Fri Jan 14, 2011 6:07 pm Post subject: |
|
|
Ah great, you're welcome to contribute!
I think filing issues is a good idea. Also feel free to fork it and send pull requests. Whatever is more appropriate.
Anyone who proves to be a valuable contributor will eventually get write access
(note that things like design decisions etc. must go into bitbucket issues so they can be discussed) |
|
Back to top |
|
|
Trass3r
Joined: 29 Feb 2008 Posts: 66 Location: Germany
|
|
Back to top |
|
|
andrden
Joined: 18 Jun 2011 Posts: 1
|
Posted: Sat Jun 18, 2011 7:43 am Post subject: main.d on dmd 2.053 64bit |
|
|
dmd is now 64bit by default on 64bit Linux, so array.length no longer compatible with int, the following change is needed to compile and run
- int[VECTOR_SIZE] va = void; foreach(i,e; va) va[i] = i;
- int[VECTOR_SIZE] vb = void; foreach(i,e; vb) vb[i] = vb.length - i;
+ int[VECTOR_SIZE] va = void; foreach(int i,e; va) va[i] = i;
+ int[VECTOR_SIZE] vb = void; foreach(int i,e; vb) vb[i] = cast(int)vb.length - i; |
|
Back to top |
|
|
|