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

« back to all changes in this revision

Viewing changes to Puma/src/cpp/PreAssertionEvaluator.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:
41
41
  _scanner          = stream;
42
42
  _macroManager     = parser.macroManager ();
43
43
  _predicateManager = parser.predicateManager ();
44
 
  _err                     = parser.parserState ()->err;
 
44
  _err              = parser.parserState ()->err;
45
45
  _parser           = &parser;
46
46
}
47
47
 
59
59
      break;
60
60
    
61
61
  // Now get the predicate identifier.
62
 
  if (token)
 
62
  if (token) {
63
63
    if (! token->is_identifier ())
64
64
      token = (Token*) 0;
65
65
    else
66
66
      predicate = _predicateManager->getPredicate (token->text ());
 
67
  }
67
68
    
68
69
  // No identifier found -> parse error.
69
70
  if (! token) {