当前位置: 代码迷 >> 综合 >> ..\My_project\led.h(5): warning: #1295-D: Deprecated declaration LED_Init - give arg types**
  详细解决方案

..\My_project\led.h(5): warning: #1295-D: Deprecated declaration LED_Init - give arg types**

热度:75   发布时间:2024-02-12 12:04:37.0

…\My_project\led.h(5): warning: #1295-D: Deprecated declaration LED_Init - give arg types

这个其实是在头文件写函数时候 函数括号不写导致的

void LED_Init();

将括号加入void 解决警告

void LED_Init(void);

在这里插入图片描述

没有一次警告是不是看起来心情舒畅了很多了

  相关解决方案