~ubuntu-branches/ubuntu/wily/aspectc++/wily

« back to all changes in this revision

Viewing changes to Puma/gen-release/step1/src/Syntax.cc

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-06-15 10:17:02 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20090615101702-qsr30iptwbxylmo2
Tags: 1.0pre4~svn.20090615-1
* New upstream release.
* don't ignore errors in the postrm script
* avoid spurious creation of empty dir ./usr/sbin/
* improve short descriptions of libpuma-doc and libpuma-dev
* bump Standards-Version to 3.8.1
* bump debhelper compat level to level 7 (latest in stable)

Show diffs side-by-side

added added

removed removed

Lines of Context:
150
150
  }
151
151
}
152
152
 
 
153
CTree* Syntax::accept (CTree *result) {
 
154
  return result;
 
155
}
 
156
 
153
157
bool Syntax::parse_token (int token_type) {
154
158
  Token *t = token_provider->current ();
155
 
 
156
 
#if 0
157
 
  if (t)
158
 
    cout<<t->location()<<": `"<<t->text()<<"'"<<endl;
159
 
#endif /* 0 */
160
 
 
161
159
  if (t && t->type () == token_type) {
162
160
    _problem_token = (Token*)0;
163
161
    token_provider->next ();