F:\VC6.0 : error C2065: 'assert' : undeclared identifier
导入#include...
分类:
其他好文 时间:
2014-11-30 23:24:02
阅读次数:
466
之前写了一片关于编译SDWebImage报错解决方法的文章:http://blog.csdn.net/cuibo1123/article/details/39434015结果很多人问这个问题的原因,那就在这里给大家说一说好了,分析思路一并送上(不过我还是建议大家自己动手去分析)。首先,如果新建工程,按照SDWebImage的方式声明输出口并引用:@interface ZCTest ()
@...
分类:
Web程序 时间:
2014-11-29 07:06:39
阅读次数:
188
当我们在使用Window操作系统的时候,可能使用最多的文本格式就是txt了,但是当我们将Window平台下的txt文本文档拷贝到Linux平台下查看时,发现原来的中文全部变成了乱码。没错, 引起这个结果的原因就是两个平台下,编辑器对默认的编码格式是不一样的:
在Window平台下,Notepad的默认编码是ASCII码或者GBK,而在Linux平台下默认的是UTF-8(中文环境的情况),编码...
分类:
系统相关 时间:
2014-11-02 18:21:20
阅读次数:
211
报错:Use of undeclared identifier '_executing' / '_finished';解决方法:在SDWebImageDownloaderOperation类的实现中(@implementation里)添加:@synthesize executing = _execu...
分类:
Web程序 时间:
2014-10-22 17:53:23
阅读次数:
155
报错报错:Use of undeclared identifier '_executing' / '_finished';
解决方法如下:...
分类:
Web程序 时间:
2014-10-05 13:16:48
阅读次数:
164
升级Debian到wheezy后重新编译php。在编译libiconv时出错(话说俺居然没有找到这货的二进制包)./stdio.h:1010:1: error: 'gets' undeclared here (not in a function)下面报make[2]: *** [progname.o...
分类:
其他好文 时间:
2014-09-28 15:50:22
阅读次数:
221
报错:Use of undeclared identifier '_executing' / '_finished';解决方法:在SDWebImageDownloaderOperation类的实现中(@implementation里)添加:1 @synthesize executing = _exe...
分类:
Web程序 时间:
2014-09-21 22:43:01
阅读次数:
1443
报错:Use of undeclared identifier '_executing' / '_finished';解决方法:在SDWebImageDownloaderOperation类的实现中(@implementation里)添加:@synthesize executing = _executing ;
@synthesize finished = _finished;即可。...
分类:
Web程序 时间:
2014-09-20 20:34:27
阅读次数:
249
release:模式下问题:在导入JPEG文件时要使用到 CArchiveStream类 但是编译的时候会出现 'CArchiveStream' : undeclared identifier 编译错误。即使追加了 #include #include 有时候还是不能解决问题。解决方法:在...
分类:
其他好文 时间:
2014-09-06 09:43:22
阅读次数:
197
操作系统:centos6.4X86_64apache版本:httpd-2.2.6openssl版本:openssl-1.0.1e源码编译apache时报如下错误:ssl_engine_init.c:Infunction‘ssl_init_ctx_protocol‘:
ssl_engine_init.c:390:warning:assignmentdiscardsqualifiersfrompointertargettype
ssl_engine_init.c:396..
分类:
其他好文 时间:
2014-08-08 18:25:36
阅读次数:
841