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

推荐订阅源

H
Hackread – Cybersecurity News, Data Breaches, AI and More
W
WeLiveSecurity
C
Check Point Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Vulnerabilities – Threatpost
GbyAI
GbyAI
A
Arctic Wolf
NISL@THU
NISL@THU
N
Netflix TechBlog - Medium
The Register - Security
The Register - Security
M
MIT News - Artificial intelligence
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Microsoft Security Blog
Microsoft Security Blog
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
T
Tenable Blog
G
GRAHAM CLULEY
O
OpenAI News
S
Schneier on Security
Google Online Security Blog
Google Online Security Blog
Vercel News
Vercel News
宝玉的分享
宝玉的分享
Attack and Defense Labs
Attack and Defense Labs
T
The Blog of Author Tim Ferriss
量子位
aimingoo的专栏
aimingoo的专栏
The Cloudflare Blog
P
Privacy & Cybersecurity Law Blog
S
SegmentFault 最新的问题
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LINUX DO - 热门话题
博客园_首页
F
Full Disclosure
Recent Commits to openclaw:main
Recent Commits to openclaw:main
D
Docker
U
Unit 42
A
About on SuperTechFans
博客园 - 司徒正美
Hacker News - Newest:
Hacker News - Newest: "LLM"
人人都是产品经理
人人都是产品经理
Application and Cybersecurity Blog
Application and Cybersecurity Blog
G
Google Developers Blog
Security Archives - TechRepublic
Security Archives - TechRepublic
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
Scott Helme
Scott Helme
TaoSecurity Blog
TaoSecurity Blog

博客园 - 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了。所以还是要多多注意。修改的方法也就是定义类型就好了:)