~ubuntu-branches/ubuntu/wily/qtdeclarative-opensource-src/wily-proposed

« back to all changes in this revision

Viewing changes to src/3rdparty/double-conversion/ieee.h

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo, Ricardo Salveti de Araujo, Timo Jyrinki
  • Date: 2014-06-19 02:39:21 UTC
  • mfrom: (0.1.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140619023921-yb2oasnuetz9b0fc
Tags: 5.3.0-3ubuntu4
[ Ricardo Salveti de Araujo ]
* debian/control:
  - Updating dependencies as we now also have libqt5quickwidgets5-gles
* libqt5quickwidgets5.symbols: updating to allow gles variant

[ Timo Jyrinki ]
* Update libqt5quickparticles5.symbols from build logs

Show diffs side-by-side

added added

removed removed

Lines of Context:
256
256
    return (significand & kSignificandMask) |
257
257
        (biased_exponent << kPhysicalSignificandSize);
258
258
  }
 
259
 
 
260
  DISALLOW_COPY_AND_ASSIGN(Double);
259
261
};
260
262
 
261
263
class Single {
391
393
  static const uint32_t kNaN = 0x7FC00000;
392
394
 
393
395
  const uint32_t d32_;
 
396
 
 
397
  DISALLOW_COPY_AND_ASSIGN(Single);
394
398
};
395
399
 
396
400
}  // namespace double_conversion