mirror of
https://github.com/airwindows/airwindows.git
synced 2026-05-15 14:16:00 -06:00
[GH-ISSUE #29] *in++; #22
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/airwindows#22
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @sjaehn on GitHub (May 24, 2021).
Original GitHub issue: https://github.com/airwindows/airwindows/issues/29
Hi Chris,
first of all big compliments for your great plugin collection. I already follow you yt streams for a wile, if I can find time. Very educating.
Now my minor issue. But maybe I'm wrong. I was wondering that the process method code for (almost?) all your plugins contain the following block at the end of the
whileloop:The de-referencer
*is not required here as you don't assign anything to wherein1(and the others) point to. My compiler complains about it ([-Wunused-value]). But I think (hope) that compilers ignore this de-referencing that isn't used and it finally doesn't cost any CPU time or memory. Anyway, I would go within1++;(and the others) without*.@airwindows commented on GitHub (May 24, 2021):
These are parts of the code directly from the templates (I think in this case it'd be the VST code?)
I don't change stuff that's part of the template: I'm glad it's not failing to work, but I'm leaving it alone regardless as I didn't write that code. The platform designer had it that way, so I'm going to leave it consistent with how Apple or Steinberg wrote it when they wrote it :)
@sjaehn commented on GitHub (May 24, 2021):
OK, nice to know && fine for me.