diff options
| author | Andreas Grois <andi@grois.info> | 2021-10-28 19:03:01 +0200 |
|---|---|---|
| committer | Andreas Grois <andi@grois.info> | 2021-10-28 19:03:01 +0200 |
| commit | 762f72449bb9007a4679e478c6bf084146d89510 (patch) | |
| tree | d4f5224bd0770410aff39428a125886b25cea36e /pulse/src/communication.rs | |
| parent | bc54170659191d71859317dd43ae30698d03bd37 (diff) | |
Ignore "dead code" warnings on FFI enums.
Diffstat (limited to 'pulse/src/communication.rs')
| -rw-r--r-- | pulse/src/communication.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pulse/src/communication.rs b/pulse/src/communication.rs index 918d6c9..51456d9 100644 --- a/pulse/src/communication.rs +++ b/pulse/src/communication.rs @@ -43,7 +43,7 @@ impl MsgMainToModule for SenderForMain { } impl From<PulseWakeUpError> for PluginCommunicationError { - fn from(error : PulseWakeUpError) -> Self { + fn from(_error : PulseWakeUpError) -> Self { PluginCommunicationError {} } } |
