Search

December 02, 2007
c++ »
...std::* outside the namespace, then inherit or typedef it inside the namespace, for example:

#include...
December 01, 2007
General »
...enum testname { ignore }  }
template TESTNAME(alias K) {
   typedef void function(testname!(K)) TESTNAME;
}

unittest {
    int...
November 30, 2007
General »
...you change "typedef" to "alias" and then it will.

I believe D's typedef creates...
November 30, 2007
General »
...comes along, if I do the following:

typedef int X;

struct Y
{
   X opImplicitCast() {...}
}

This...
November 28, 2007
General »
...are auto, extern, mutable, register, static and typedef. See the grammar at http://www.kuzbass...
November 28, 2007
General »
...are not interchangeable.

For example, in C++, "typedef" is (syntactically) a storage class, but it...
November 26, 2007
c++.stlsoft »
...reads:
   typedef string_tokeniser<string_type, char> tokeniser_type;

while it should read:
   typedef string...
November 24, 2007
General »
...following:

#include <stdio.h>
#define N 25

typedef union {
  unsigned int i;
  struct {
    unsigned int...
November 21, 2007
Learn »
...code:

#include <stdio.h>

#define N 25

typedef union {
    unsigned int i;
    struct {
        unsigned int...
November 20, 2007
General »
Perhapses {,w,d}char should become typedef of u{byte,short,int} and drop as...
224 225 226 227 228 229 230 231 232 233 234
Next ›   Last »