今天在编译PDF时发现使用了一下STL中的z数值极限竟然编译不过,return GetRangeConstraint(value ::max(), true);出现如下错误:warning C4003: “max”宏的实参不足error C2589: “(” : “::”右边...
分类:
其他好文 时间:
2014-07-07 18:03:56
阅读次数:
190
提示Error 1324.The path My Pictures contains an invalid character.解决办法:新建一个文件夹,123, 设置 我的文档文件夹 目录指向 “C:\123” 即可。-----------------------------相关文章 http:/...
分类:
其他好文 时间:
2014-07-07 15:02:50
阅读次数:
211
今天要用yum安装软件,于是yum install ***,但是报错,错误如下:There was a problem importing one of the Python modules required to run yum. The error leading to this problem...
分类:
其他好文 时间:
2014-07-07 14:55:42
阅读次数:
350
我们来看一下下面这条语句:BEGIN LOADING stu_flERRORFILES error_1, error_2;如果此时已经存在error_1或error_2表,那么将会报错,信息如下:0008 BEGIN LOADING stu_fl ERRORFILES error_1, er...
分类:
数据库 时间:
2014-06-30 14:31:51
阅读次数:
429
今天加班试图push代码的时候,报出了如下错误:
出现这个错误之前,是在远程服务器上创建了一个tag v2.1.1,同时clone的服务器代码指定的分支也是branch v2.1.1,本地用git tag命令可以查看分支:
在本地删除多余的tag标签:
再次push, Everything thing is OK!...
分类:
其他好文 时间:
2014-06-30 09:40:27
阅读次数:
696
Linux下Memcached的安装步骤,如果出现/usr/local/memcached/bin/memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory异常在/etc/ld.so.conf中加入/usr/local/lib这一行,保存之后,再运行:/sbin/ldconfig –v更新一下配置即可。...
分类:
系统相关 时间:
2014-06-30 09:20:50
阅读次数:
320
(一)
class Shape {
public:
virtual void draw() const = 0;
virtual void error(const string& msg);
int objectID() const;
};
class Rectangle : public Shape {...};
class Ellipse : publi...
分类:
编程语言 时间:
2014-06-30 00:55:48
阅读次数:
409
前天在项目中写的一个ajax jsonp的使用,出现了问题:可以成功获得请求结果,但没有执行success方法,直接执行了error方法提示错误——ajax jsonp之前并没有用过,对其的理解为跟普通的ajax请求差不多,没有深入了解;出现了这种错误,几经调试(检查后台的代码和js部分的属性设置)还是不行,让我感觉很是意外和不解。于是,决定仔细研究下ajax
jsonp的使用,并将最后测试成...
分类:
Web程序 时间:
2014-06-30 00:23:57
阅读次数:
311
Linux下Nginx的安装 如果出现:error: 'ngx_http_file_cache_node_t' has no member named 'length'异常,可能是ngx_cache_purge-2.1.tar.gz版本太旧导致...
分类:
系统相关 时间:
2014-06-30 00:11:43
阅读次数:
401
Add include to "freetype.h"/* add this line */#include #ifndef FT_FREETYPE_H#error "`ft2build.h' hasn't been included yet!"#error "Please always use m...
分类:
其他好文 时间:
2014-06-29 20:24:58
阅读次数:
312