~ubuntu-branches/ubuntu/trusty/coco-cpp/trusty

« back to all changes in this revision

Viewing changes to Tab.cpp

  • Committer: Package Import Robot
  • Author(s): Markus Loeberbauer
  • Date: 2012-01-21 19:03:50 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120121190350-duyi8jaait1tzer6
Tags: 20120102-1
* Now upstream release.
* Support for "::" as a namespace separator on the command line.
* Better readable parser, to support debugging.
* Generate trace.txt into the output folder, if specified.
* Minor bugfixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1182
1182
        for (i=0; i<xref->Count; i++) {
1183
1183
                sym = (Symbol*)(xref->GetKey(i));
1184
1184
                wchar_t *paddedName = Name(sym->name);
1185
 
                fwprintf(trace, L"  %12s", paddedName);
 
1185
                fwprintf(trace, L"  %12ls", paddedName);
1186
1186
                coco_string_delete(paddedName);
1187
1187
                ArrayList *list = (ArrayList*)(xref->Get(sym));
1188
1188
                int col = 14;