Search

September 27, 2006
Issues »
...id=379

           Summary: wrong thisptr type in typedef'ed struct
           Product: D
           Version: 0.167...
September 27, 2006
Issues »
...Ranged(T){
        T value, min, max, range;
}

typedef Ranged!(float) Degree = {0f, 0f, 360f, 360f...
September 26, 2006
Issues »
...of functions. Example:

--------
void func(int a) { }
//typedef int ft(int);

typeof(func) test() {
}
----
Instead...
September 20, 2006
General »
typedef int test_t;

int main()
{
    test_t x;
    int y = 2;
    x = y;
    return...
September 20, 2006
General »
typedef int test_t;
void main(){
  test_t x = 2;
}

works just fine. Am I...
September 20, 2006
General »
...a sort of weak typedef. Basically, this would be a typedef, but with implicit casting...
September 14, 2006
Issues »
...run/t/typedef_19_A.d http://dstress.kuehne.cn/run/t/typedef_19_B...
September 13, 2006
Issues »
...run/t/typedef_18_A.d http://dstress.kuehne.cn/run/t/typedef_18_B...
September 12, 2006
General »
...doesn't work!
reptile!(shark).fish turtle;
typedef typeof(frog!(turtle)) shark;

pragma(msg, shark...
September 11, 2006
General »
...Child;
  }

  typedef m_Final.c_Leaf_Item  [m_Leaf_Max  ]  c_Leaf_Items;
  typedef m...
257 258 259 260 261 262 263 264 265 266 267
Next ›   Last »