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 <campbell@blender.org>2022-09-22 04:26:49 +0300
committerCampbell Barton <campbell@blender.org>2022-09-22 06:47:17 +0300
commit967fe75bb6af36733241c1ecad335034aa692e18 (patch)
treeaed2221d3d17c3f59995e43c5ea88c1e36c9c4c3
parent62ffbc7d7ffabc823d9f43618c9877ec357ec485 (diff)
Cleanup: remove redundant includes from GHOST_SystemPathsUnix
-rw-r--r--intern/ghost/intern/GHOST_SystemPathsUnix.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/intern/ghost/intern/GHOST_SystemPathsUnix.cpp b/intern/ghost/intern/GHOST_SystemPathsUnix.cpp
index 41babc5d312..7e1d3d868c6 100644
--- a/intern/ghost/intern/GHOST_SystemPathsUnix.cpp
+++ b/intern/ghost/intern/GHOST_SystemPathsUnix.cpp
@@ -5,22 +5,17 @@
* \ingroup GHOST
*/
-#include <cstdio>
#include <sstream>
#include "GHOST_SystemPathsUnix.h"
#include "GHOST_Debug.h"
-// For timing
-
+/* For timing. */
#include <sys/time.h>
#include <unistd.h>
-#include <cstdio> /* for fprintf only */
-#include <cstdlib> /* for exit */
-
-#include <pwd.h> /* for get home without use getenv() */
+#include <pwd.h> /* For get home without use `getenv()`. */
#include <string>
using std::string;