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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-01-15 15:25:45 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-15 15:30:31 +0300
commit30c3852ffd140b003410aae25b222dea8b76412f (patch)
tree5bf74c4107905ffb241eda4bc1e8f93ae3b8756a /source/creator/creator_signals.c
parent328a0f975be68404604ee2571c1d0c4cf828dfec (diff)
Cleanup: comment line length (creator)
Prevents clang-format wrapping text before comments.
Diffstat (limited to 'source/creator/creator_signals.c')
-rw-r--r--source/creator/creator_signals.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/creator/creator_signals.c b/source/creator/creator_signals.c
index 94e5874f71b..678617eb28f 100644
--- a/source/creator/creator_signals.c
+++ b/source/creator/creator_signals.c
@@ -335,8 +335,10 @@ void main_signal_setup_fpe(void)
(_MM_MASK_OVERFLOW | _MM_MASK_INVALID | _MM_MASK_DIV_ZERO));
# endif /* OSX_SSE_FPE */
# if defined(_WIN32) && defined(_MSC_VER)
- _controlfp_s(NULL, 0, _MCW_EM); /* enables all fp exceptions */
- _controlfp_s(NULL, _EM_DENORMAL | _EM_UNDERFLOW | _EM_INEXACT, _MCW_EM); /* hide the ones we don't care about */
+ /* enables all fp exceptions */
+ _controlfp_s(NULL, 0, _MCW_EM);
+ /* hide the ones we don't care about */
+ _controlfp_s(NULL, _EM_DENORMAL | _EM_UNDERFLOW | _EM_INEXACT, _MCW_EM);
# endif /* _WIN32 && _MSC_VER */
#endif
}