This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
paulstretchplugin
mirror of
https://bitbucket.org/xenakios/paulstretchplugin.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
10
Wiki
Activity
Browse Source
Handle corner case in hasProperties
tags/1.1.0
xenakios
7 years ago
parent
ebffc66e90
commit
13d03ecaeb
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
Source/PS_Source/globals.h
+ 2
- 0
Source/PS_Source/globals.h
View File
@@ -74,6 +74,8 @@ const int g_maxnumoutchans = 32;
template<typename... Args>
inline bool hasProperties(ValueTree src, Args&&... args)
{
if (sizeof...(args) == 0)
return false;
return (src.hasProperty(args) && ...);
}
Write
Preview
Loading…
Cancel
Save