Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jonathan Wilkes
purr-data
Commits
93fce0fd
Commit
93fce0fd
authored
May 23, 2018
by
Jonathan Wilkes
Browse files
fix off-by-one error in the comments
parent
40a25a2a
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/m_pd.h
View file @
93fce0fd
...
...
@@ -786,7 +786,7 @@ static inline int PD_BADFLOAT(t_float f)
/* Test to find unusually large or small normal values, in
addition to denormals, NANs and infs:
f > abs(2^65) or < abs(2^-63)
f >
=
abs(2^65) or < abs(2^-63)
This is useful for catching extreme values in, say, a filter,
then bashing to zero before ever calculating a denormal. */
...
...
@@ -816,7 +816,7 @@ static inline int PD_BADFLOAT(t_float f)
/* Test to find unusually large or small normal values, in
addition to denormals, NANs and infs:
f > abs(2^513) or < abs(2^-511)
f >
=
abs(2^513) or < abs(2^-511)
This is useful for catching extreme values in, say, a filter,
then bashing to zero before ever calculating a denormal. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment