~ubuntu-branches/ubuntu/maverick/aspectc++/maverick

« back to all changes in this revision

Viewing changes to Puma/src/infos/acinfos/ACAdviceInfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-04-10 17:40:52 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20080410174052-xdnsm7oi8hauyyf1
Tags: 1.0pre4~svn.20080409+dfsg-3
Fix another missing include, this time in Ag++/StdSystem.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
   *           name of the advice. */
62
62
  ACAdviceInfo (int n) : _def_node (0), _decl_node (0), _aspect (0), 
63
63
   _inherited (false), _parent (0), _uses_aspectOf (false), 
64
 
   _have_advice_func (false) { _name << "__advice_" << n << ends; }
 
64
   _have_advice_func (false) { _name << "__advice_" << n; }
65
65
 
66
66
  /** Get the internal name of the advice. */
67
67
  const char *name () { return _name.str ().c_str (); }