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:
authorDalai Felinto <dalai@blender.org>2020-03-06 18:45:16 +0300
committerDalai Felinto <dalai@blender.org>2020-03-06 19:26:32 +0300
commit85424397b1847d80d7a0b6bcbf7cb3c3aa3d0181 (patch)
treed009ab527aad3b4a451f6dfaab75f62c6348dc83 /source/blender/freestyle/intern/system
parent96e2bd84932a826d09b7ed2201ba67a0a74f0b29 (diff)
Cleanup: tweak Freestyle #includes in preparation for clang-format sorting
Diffstat (limited to 'source/blender/freestyle/intern/system')
-rw-r--r--source/blender/freestyle/intern/system/PythonInterpreter.h2
-rw-r--r--source/blender/freestyle/intern/system/StringUtils.cpp2
-rw-r--r--source/blender/freestyle/intern/system/StringUtils.h2
3 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/freestyle/intern/system/PythonInterpreter.h b/source/blender/freestyle/intern/system/PythonInterpreter.h
index af4ab18d0e8..785bc0f4330 100644
--- a/source/blender/freestyle/intern/system/PythonInterpreter.h
+++ b/source/blender/freestyle/intern/system/PythonInterpreter.h
@@ -22,6 +22,7 @@
* \brief Python Interpreter
*/
+/* clang-format off */
#include <iostream>
extern "C" {
@@ -48,6 +49,7 @@ extern "C" {
#include "bpy_capi_utils.h"
}
+/* clang-format on */
namespace Freestyle {
diff --git a/source/blender/freestyle/intern/system/StringUtils.cpp b/source/blender/freestyle/intern/system/StringUtils.cpp
index 23f454c0a04..58d84010574 100644
--- a/source/blender/freestyle/intern/system/StringUtils.cpp
+++ b/source/blender/freestyle/intern/system/StringUtils.cpp
@@ -19,10 +19,12 @@
* \brief String utilities
*/
+/* clang-format off */
// soc #include <qfileinfo.h>
#include "FreestyleConfig.h"
#include "StringUtils.h"
+/* clang-format on */
namespace Freestyle {
diff --git a/source/blender/freestyle/intern/system/StringUtils.h b/source/blender/freestyle/intern/system/StringUtils.h
index 575d26597ee..16944e47335 100644
--- a/source/blender/freestyle/intern/system/StringUtils.h
+++ b/source/blender/freestyle/intern/system/StringUtils.h
@@ -22,6 +22,7 @@
* \brief String utilities
*/
+/* clang-format off */
#include <cstring>
#include <iostream>
#include <sstream>
@@ -32,6 +33,7 @@ extern "C" {
#include "BLI_string.h"
#include "BLI_path_util.h"
}
+/* clang-format on */
using namespace std;