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.c
parent328a0f975be68404604ee2571c1d0c4cf828dfec (diff)
Cleanup: comment line length (creator)
Prevents clang-format wrapping text before comments.
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 632ae7c3cf2..fa3d57f5c9d 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -249,7 +249,8 @@ int main(
_putenv_s("OMP_WAIT_POLICY", "PASSIVE");
# endif
- /* FMA3 support in the 2013 CRT is broken on Vista and Windows 7 RTM (fixed in SP1). Just disable it. */
+ /* FMA3 support in the 2013 CRT is broken on Vista and Windows 7 RTM
+ * (fixed in SP1). Just disable it. */
# if defined(_MSC_VER) && defined(_M_X64)
_set_FMA3_enable(0);
# endif
@@ -398,7 +399,8 @@ int main(
main_signal_setup();
#else
- G.factory_startup = true; /* using preferences or user startup makes no sense for py-as-module */
+ /* using preferences or user startup makes no sense for py-as-module */
+ G.factory_startup = true;
#endif
#ifdef WITH_FFMPEG