Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Institute of Technical Acoustics (ITA)
ITABase
Commits
b72e5aea
Commit
b72e5aea
authored
Jun 22, 2017
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Wrong type for double infinity constants
parent
97e1897e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
include/ITAConstants.h
include/ITAConstants.h
+2
-2
No files found.
include/ITAConstants.h
View file @
b72e5aea
...
...
@@ -56,8 +56,8 @@ namespace ITAConstants
// Log-scale limits
static
float
INFINITY_F
=
std
::
numeric_limits
<
float
>::
infinity
();
static
float
MINUS_INFINITY_F
=
-
std
::
numeric_limits
<
float
>::
infinity
();
static
float
INFINITY_D
=
std
::
numeric_limits
<
double
>::
infinity
();
static
float
MINUS_INFINITY_D
=
-
std
::
numeric_limits
<
double
>::
infinity
();
static
double
INFINITY_D
=
std
::
numeric_limits
<
double
>::
infinity
();
static
double
MINUS_INFINITY_D
=
-
std
::
numeric_limits
<
double
>::
infinity
();
};
#endif // INCLUDE_WATCHER_ITA_CONSTANTS
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