Minor fixes

This commit is contained in:
Jérôme Leclercq
2020-09-01 18:47:08 +02:00
parent 7d2673eabd
commit ae34533595
5 changed files with 11 additions and 11 deletions

View File

@@ -23,7 +23,7 @@
namespace Nz
{
using DynLibFunc = int (*)(); // "Generic" type of pointer to function
using DynLibFunc = void (*)(void); // "Generic" type of pointer to function
class DynLibImpl;