Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-06-01 20:49:05 +0300
committerRobert Adam <dev@robert-adam.de>2021-06-01 22:10:09 +0300
commit3a4d9df4ea9b4096b458a6b85fc31cdf5b740375 (patch)
treed3ea7f0fa1cf6d1b7e0cfff607001ab97eda32f4 /plugins
parent28f6f8b2c6b3619f420da8ebbce5e8dae815d434 (diff)
REFAC(client): Remove unnecessary include
The windows header was included for the definition of M_PI. However given that we define _USE_MATH_DEFINES globally for all source files and cmath is included already, this symbol is defined by cmath, making the windows-specific header superfluous.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mumble_positional_audio_utils.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/plugins/mumble_positional_audio_utils.h b/plugins/mumble_positional_audio_utils.h
index ca6b5b4f0..93a5514a4 100644
--- a/plugins/mumble_positional_audio_utils.h
+++ b/plugins/mumble_positional_audio_utils.h
@@ -17,11 +17,6 @@
# include <fenv.h>
#endif
-#ifdef _MSC_VER
-# include <corecrt_math_defines.h>
-# include <intrin.h>
-#endif
-
/// This union is used by isBigEndian() to determine the endianness.
union SingleSplit4Bytes {
uint32_t single;