mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 09:09:47 +02:00
I got fed up of unused parameter warning from my compiler hiding the warnings I wanted to see, so have added WXUNUSED annotations to a lot of widely used header files, and cleaned up trailing junk on the way.
This commit is contained in:
parent
72f6eded20
commit
4d0d78f724
@ -115,7 +115,7 @@ class AUDACITY_DLL_API Effect {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Called to set or retrieve parameter values. Return true if successful.
|
// Called to set or retrieve parameter values. Return true if successful.
|
||||||
virtual bool TransferParameters( Shuttle & shuttle ) {
|
virtual bool TransferParameters( Shuttle & WXUNUSED(shuttle) ) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -330,14 +330,3 @@ long TrapLong(long x, long min, long max);
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
|
|
||||||
// version control system. Please do not modify past this point.
|
|
||||||
//
|
|
||||||
// Local Variables:
|
|
||||||
// c-basic-offset: 3
|
|
||||||
// indent-tabs-mode: nil
|
|
||||||
// End:
|
|
||||||
//
|
|
||||||
// vim: et sts=3 sw=3
|
|
||||||
// arch-tag: 2eabc50c-b33d-4699-a526-66a5b2284fc5
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user