~ubuntu-branches/ubuntu/quantal/aspectc++/quantal

« back to all changes in this revision

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

  • 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:
51
51
  cmd << parser.importHandler () << " ";
52
52
  
53
53
  // [-I"<path>"]*
54
 
  Array<char*> &paths = parser.fileIncluder ()->getIncludePaths ();
 
54
  Array<Filename> &paths = parser.fileIncluder ()->getIncludePaths ();
55
55
  for (long i = 0; i < paths.length (); i++)
56
56
    cmd << "-I\"" << paths.lookup (i) << "\" ";
57
57
 
90
90
  // command line finished
91
91
  cmd << "\" ";
92
92
  
93
 
  cmd << std::ends;
94
 
  name << std::ends;
95
 
  
96
93
  callHandler (cmd.str ().c_str (), name.str ().c_str ());
97
94
}
98
95