~ubuntu-branches/ubuntu/jaunty/aspectc++/jaunty

« back to all changes in this revision

Viewing changes to Puma/src/common/Token.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-07-07 14:41:02 UTC
  • mfrom: (1.1.3 upstream) (6.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080707144102-lzml7t07f3sl00r5
Tags: 1.0pre4~svn.20080711-1
* new upstream snapshot.
* include all upstream documentation. Clarifying emails regarding
  licensing has been included into debian/copyright.
* reformat description following recomendations of
  http://www.debian.org/doc/debian-policy/ch-controlfields.html#s-f-Description
  (Closes: #480316)

Show diffs side-by-side

added added

removed removed

Lines of Context:
125
125
    case TOK_XOR_EQ_ISO_646: return TOK_XOR_EQ;
126
126
    case TOK_ASM_2: return TOK_ASM;
127
127
    case TOK_ASM_3: return TOK_ASM;
128
 
    case TOK_BOOL_2: return TOK_BOOL;
129
128
    case TOK_CONST_2: return TOK_CONST;
130
129
    case TOK_CONST_3: return TOK_CONST;
131
130
    case TOK_INLINE_2: return TOK_INLINE;
367
366
    case TOK_ASM_2: return (char*)"__asm";
368
367
    case TOK_ASM_3: return (char*)"__asm__";
369
368
    case TOK_BOOL: return (char*)"bool";
370
 
    case TOK_BOOL_2: return (char*)"_Bool";
 
369
    case TOK_C_BOOL: return (char*)"_Bool";
371
370
    case TOK_CONST: return (char*)"const";
372
371
    case TOK_CONST_2: return (char*)"__const";
373
372
    case TOK_CONST_3: return (char*)"__const__";