March 21, 2020 Issues » [Issue 12544] Differences in ubyte/char enum printing | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=12544 Basile-z <b2.temp@gmx.com... | |||
March 21, 2020 Issues » [Issue 16772] ICE when using extern(C++) and ubyte[] return value | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=16772 Basile-z <b2.temp@gmx.com... | |||
March 21, 2020 Issues » [Issue 7328] Allow casting between ubyte[4] and int | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=7328 Basile-z <b2.temp@gmx.com... | |||
March 21, 2020 Issues » [Issue 17978] coercion from int to ubyte wrongly accepted | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=17978 Basile-z <b2.temp@gmx.com... | |||
March 21, 2020 Issues » [Issue 18580] std.conv.to!(const ubyte[])(void[]) should work | |||
|---|---|---|---|
| |||
https://issues.dlang.org/show_bug.cgi?id=18580 Basile-z <b2.temp@gmx.com... | |||
March 19, 2020 General » Re: pragma(mangle, "name") suggestion ! | |||
|---|---|---|---|
| |||
...of the data itself:
struct FieldsWrapper
{
immutable ubyte[][] fields = [[1, 2, 3, 4]];
}
void myAction... | |||
March 19, 2020 General » Re: pragma(mangle, "name") suggestion ! | |||
|---|---|---|---|
| |||
...enum APP_RULES = getUDERules!(App);
void myAction(ubyte[][] fields) (){
static if( APP_RULES.a && !APP... | |||
March 19, 2020 General » Re: pragma(mangle, "name") suggestion ! | |||
|---|---|---|---|
| |||
...name)
{
pragma(mangle, name ~ "_myAction")
void myAction(ubyte[][] fields) ()
{
]
}
Although if you need to use... | |||
March 19, 2020 General » Re: pragma(mangle, "name") suggestion ! | |||
|---|---|---|---|
| |||
...like pragma(inline);
========
void myAction(string name, ubyte[][] fields)(){
pragma(mangle, name ~ "_myAction");
pragma(inline... | |||
March 19, 2020 General » pragma(mangle, "name") suggestion ! | |||
|---|---|---|---|
| |||
...void myAction(string name, ubyte[][] fields)(){
}
===========
I need this because the ubyte[][] fields is very... | |||
Copyright © 1999-2021 by the D Language Foundation