~ubuntu-branches/ubuntu/lucid/codelite/lucid

« back to all changes in this revision

Viewing changes to CxxParser/TODO.TXT

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-01-12 15:46:55 UTC
  • Revision ID: james.westby@ubuntu.com-20090112154655-sdynrljcb6u167yw
Tags: upstream-1.0.2674+dfsg
ImportĀ upstreamĀ versionĀ 1.0.2674+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
1. Scope parser not detecting destructor & constructor properly
 
2
2. template intializing another template not supported. Possible workaround:
 
3
 
 
4
//will not work
 
5
std::list<std::pair<std::string, std::string> > var;
 
6
 
 
7
//will work
 
8
typedef std::pair<std::string, std::string> StrStrPair;
 
9
std::list<StrStr> var;