Search

October 09, 2011
DMD »
...deprecated.

We should also think about deprecating typedef as well. Unless there's
a _really...
September 26, 2011
c++.stlsoft »
...array.hpp>

int main()
{
   typedef stlsoft::fixed_array_2d<double> FixedArray;
   typedef FixedArray::dimension_element...
September 24, 2011
General »
...though. :~)

Stock example:

pragma(attribute, vector_size())
  typedef float __v4sf_t

union __v4sf {
  float[4...
September 22, 2011
DMD »
...test15.d

  Log Message:
  -----------
  Typedef cleanup: test15

Some of these were typedef bugs, others not...
September 22, 2011
Learn »
...4; n = 3; i = 2;};
    dg();
}

becomes:

typedef struct foo_dg_1_delegate {
    void (*funcptr...
September 22, 2011
Issues »
...if 'typedef' is replaced by 'alias', a runtime segfault occurs. It works if typedef is...
September 22, 2011
Issues »
...test suite.

void firsttypedef()
{
    typedef int myint = 3;
}

void secondtypedef()
{
    typedef int myint = 7;
    static...
September 22, 2011
General »
...template <class V>
struct Fft
{
  typedef typename V::T T;
  typedef typename V::vec vec...
September 21, 2011
DMD »
...d for all typedef bugs

So that they'll remain valid when typedef is deprecated...
September 21, 2011
Learn »
...x = 4;}
    dg();
}

is roughly equivalent to:

typedef struct foo_dg_1_delegate {
    void (*funcptr...
144 145 146 147 148 149 150 151 152 153 154
Next ›   Last »