1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

fix android x86 isnan_z

This commit is contained in:
tianduanrui 2017-11-25 23:07:07 +08:00
parent 7298ec250f
commit 423a0bdf68
2 changed files with 14 additions and 6 deletions

View File

@ -15,16 +15,16 @@
- 二维码生成器、识别器,校验码生成器
- 九宫格技术展示图片
- Html解析器
- 以及未列出等20余种自定义widget。
- 以及未列出等20余种自定义widget。
4. 有线和无线网络自动连接管理类
6. 解决Qt4.8.7在嵌入式屏幕上QGraphics系统不正常绘画的问题
7. QQt输入法
- 重写了UI适配多种屏幕
8. Qt对象工厂允许注册和查找和删除所有来自QObject的类。
8. Qt对象工厂允许注册、生成、查找和删除所有来自QObject以及QWidget的类。
9. 嵌入式视频播放器,模拟端口实时预览器
0. QQt打印机支持打印pdf
2. QQtWord支持doc文档编写输出pdf格式。
4. QQt TreeView添加Qt4内部没有TreeView
4. QQtTreeView添加Qt4内部没有TreeView
- 包括QQtXmlTreeModel、QQtJsonTreeModel、QQtFileSystemTreeModel、QQtSqlTreeModel
5. 支持工程的版本变更
- 添加config.h.in支持
@ -45,7 +45,9 @@
0. 跨平台支持macOS、iOS、Android、Windows、Linux、MIPS、ARM等。
1. 添加svg support widgets
- 比如 QQtSvgProgressbar
- QQtSvgCheckBox
- QQtSvgCheckBox
2. 添加QQtDictionary
- 解决C Plus Plus中没有字典类别的尴尬。
# Usage

View File

@ -52,17 +52,23 @@ inline float nan() {return std::numeric_limits<float>::quiet_NaN();}
//#include <cmath>
#include <math.h>
using namespace std;
namespace zxing {
inline bool isnan_z ( float v )
{
return isnan ( v );
}
inline bool isnan_z ( double v )
{
return isnan ( v );
//std::? x
//:: y
return ( ( sizeof ( v ) == sizeof ( float ) ) ? isnanf ( v )
: ( sizeof ( v ) == sizeof ( double ) ) ? isnan ( v )
: __isnanl ( v ) );
//return isnan ( v );
}
inline float nan() {return std::numeric_limits<float>::quiet_NaN();}
}