~ubuntu-branches/ubuntu/wily/cxxtools/wily-proposed

« back to all changes in this revision

Viewing changes to src/query_params.cpp

  • Committer: Package Import Robot
  • Author(s): Kari Pahula
  • Date: 2012-04-28 10:30:29 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120428103029-qc8v0sb4yb8h1542
Tags: 2.1-1
* New upstream release (SONAME 8)
  - Removed patch gcc4.7_ftbfs_fix since upstream source is GCC 4.7 safe.
  - Patches iconvstream_size_t_fix, configure.in_fixes and
    arm_gcc4.6_ftbfs_fix removed since they have been implemented in
    upstream source.
* Standards-Version 3.9.3.
* Use dh-autoreconf.

Show diffs side-by-side

added added

removed removed

Lines of Context:
197
197
    url += '%';
198
198
    char hi = (ch >> 4) & 0x0f;
199
199
    char lo = ch & 0x0f;
200
 
    url += hex[hi];
201
 
    url += hex[lo];
 
200
    url += hex[static_cast<int>(hi)];
 
201
    url += hex[static_cast<int>(lo)];
202
202
  }
203
203
}
204
204