diff options
author | David Robillard <d@drobilla.net> | 2020-11-27 17:58:01 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-27 21:42:52 +0100 |
commit | 76e4307c2f57df359651dab61184fd521ffb1fbf (patch) | |
tree | c85f7aafeb55f6e6ee5074a856fb2cdda6019dc1 /src/PatchagePort.hpp | |
parent | 7240920afeb38fb12f6c0cacb1661b82bf09c1fc (diff) | |
download | patchage-76e4307c2f57df359651dab61184fd521ffb1fbf.tar.gz patchage-76e4307c2f57df359651dab61184fd521ffb1fbf.tar.bz2 patchage-76e4307c2f57df359651dab61184fd521ffb1fbf.zip |
Fix unused parameter warnings
Diffstat (limited to 'src/PatchagePort.hpp')
-rw-r--r-- | src/PatchagePort.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/PatchagePort.hpp b/src/PatchagePort.hpp index f351bae..5bbcd13 100644 --- a/src/PatchagePort.hpp +++ b/src/PatchagePort.hpp @@ -23,9 +23,12 @@ #include "PatchageCanvas.hpp" #include "PatchageModule.hpp" #include "PortID.hpp" +#include "warnings.hpp" +PATCHAGE_DISABLE_GANV_WARNINGS #include "ganv/Module.hpp" #include "ganv/Port.hpp" +PATCHAGE_RESTORE_WARNINGS #include <gtkmm/menu.h> #include <gtkmm/menushell.h> |