~ubuntu-branches/ubuntu/utopic/oxref/utopic-proposed

« back to all changes in this revision

Viewing changes to xrefdata/skiptemplate.cc

  • Committer: Package Import Robot
  • Author(s): tony mancill, Frank Brokken, tony mancill
  • Date: 2013-12-26 10:18:21 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20131226101821-y829jwl6kvmpdqi2
Tags: 1.00.01-1
[ Frank Brokken ]
* Replaced FBB::Errno calls by FBB::Exception. See oxref's changelog. 
  (Closes: #730892)
* Removed now obsoleted git-build: target from debian/rules.
* Updated several Build-Depends versions and updated Standard-Version

[ tony mancill ]
* Bump d/compat and debhelper dependency to 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
        begin = d_cooked.find_first_of("<>", begin);
10
10
 
11
11
        if (begin == string::npos)
12
 
            throw Errno(1, "skipTemplate: invalid template spec. in ") <<
13
 
                                                                    d_cooked;
 
12
            throw Exception() << 
 
13
                    "skipTemplate: invalid template spec. in " << d_cooked;
14
14
        if (d_cooked[begin] == '<')
15
15
            ++level;
16
16
        else