The warning might not be the only reason for your compilation to become slow. The problem might be somewhere else also.
mainform.ui.h(476) : warning C4100: 'action' : unreferenced formal parameter
mainform.ui.h(996) : warning C4100: 'val' : unreferenced formal parameter
mainform.ui.h(476) : warning C4100: 'action' : unreferenced formal parameter
mainform.ui.h(996) : warning C4100: 'val' : unreferenced formal parameter
To copy to clipboard, switch view to plain text mode
These warnings mean that you are passing the parameters action and val is some function but you are not using them anywhere in the function.
Bookmarks