惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

P
Proofpoint News Feed
WordPress大学
WordPress大学
Help Net Security
Help Net Security
Jina AI
Jina AI
Security Latest
Security Latest
Y
Y Combinator Blog
Project Zero
Project Zero
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
GbyAI
GbyAI
Know Your Adversary
Know Your Adversary
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
NISL@THU
NISL@THU
Cisco Talos Blog
Cisco Talos Blog
博客园 - 司徒正美
MyScale Blog
MyScale Blog
Cyberwarzone
Cyberwarzone
D
Docker
T
The Blog of Author Tim Ferriss
G
Google Developers Blog
C
CERT Recently Published Vulnerability Notes
B
Blog
L
LangChain Blog
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
SecWiki News
SecWiki News
The Hacker News
The Hacker News
C
Check Point Blog
L
Lohrmann on Cybersecurity
V2EX - 技术
V2EX - 技术
S
Securelist
T
Threat Research - Cisco Blogs
Stack Overflow Blog
Stack Overflow Blog
TaoSecurity Blog
TaoSecurity Blog
云风的 BLOG
云风的 BLOG
Latest news
Latest news
人人都是产品经理
人人都是产品经理
L
LINUX DO - 最新话题
Application and Cybersecurity Blog
Application and Cybersecurity Blog
The Register - Security
The Register - Security
Webroot Blog
Webroot Blog
Simon Willison's Weblog
Simon Willison's Weblog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Security Blog
Microsoft Security Blog
AWS News Blog
AWS News Blog
C
Cybersecurity and Infrastructure Security Agency CISA
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
小众软件
小众软件
T
Tailwind CSS Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
宝玉的分享
宝玉的分享
O
OpenAI News

博客园 - karlchen

新一代工程科研效率协同平台peerup [转]RTH试用手记之“额外功能” [转发]RTH试用手记之“外场应用” [转]RTH试用手记之“偶发信号观测” [转载]放大器参数测试 [转载]使用实时频谱分析仪观测偶发信号的几点优势 [转载]基于频谱分析仪的滤波器参数测试 [转载]利用近场探头和频谱仪查找EMI辐射问题 [示波器,学学吧]如何测试示波器的刷新率 [VDSP中的Warning]function declared implicitly [VDSP中的Warning]integer conversion resulted in a change of sign 如何设置VISIO里的交叉线 关于Norton升级造成系统崩溃问题的解决办法 Matlab中添加高斯白噪声 [转贴]分贝是个什么东西?(好东东) VB6.0不支持鼠标滚轮的解决办法 色环电阻的读法 Windows CE.NET Core OS 特性详解(三)----通讯服务及网络 【收购】LSI 40亿美元并购Agere
[VDSP中的Warning]explicit type is missing
karlchen · 2008-10-07 · via 博客园 - karlchen

哈哈,出现这样的编译错误就是你自己粗心了,变量没有定义类型,比如如下的代码

int main(){
register Num = 0; /* missing type specifier,
will default to int */
}

VDSP会默认为int类型的,如果这个时候你幅值的是枚举或是其他类型,就会出现error了。所以还是要多多注意。修改的方法也就是定义类型就好了:)