jerryscript-project / iotjs

Platform for Internet of Things with JavaScript http://www.iotjs.net
Other
2.6k stars 438 forks source link

Fix Windows warning C4255 #1836

Closed galpeter closed 5 years ago

galpeter commented 5 years ago

On Windows there is a warning (C4255) which notifies the developer if the function argument is empty and no 'void' is specified.

Example warning: 'InitTcp': no function prototype given: converting '()' to '(void)'

The change adds the 'void' specifier for such methods.