From a54bdd76cb34005d07a65c2c3a8198b7b8e8c95a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 17 Apr 2019 08:50:46 +0200 Subject: ClangFormat: format '#if 0' code Previous cleanups didn't account for space after '#'. --- source/blender/compositor/intern/COM_Debug.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'source/blender/compositor/intern') diff --git a/source/blender/compositor/intern/COM_Debug.cpp b/source/blender/compositor/intern/COM_Debug.cpp index 67ac350de83..b977154db1a 100644 --- a/source/blender/compositor/intern/COM_Debug.cpp +++ b/source/blender/compositor/intern/COM_Debug.cpp @@ -315,10 +315,13 @@ bool DebugInfo::graphviz_system(const ExecutionSystem *system, char *str, int ma # if 0 for (ExecutionSystem::Operations::const_iterator it = system->m_operations.begin(); - it != system->m_operations.end(); ++it) - { + it != system->m_operations.end(); + ++it) { NodeOperation *op = *it; - len += snprintf(str + len, maxlen > len ? maxlen - len : 0, "// OPERATION: %s\r\n", node->getbNode()->typeinfo->ui_name); + len += snprintf(str + len, + maxlen > len ? maxlen - len : 0, + "// OPERATION: %s\r\n", + node->getbNode()->typeinfo->ui_name); } # endif -- cgit v1.2.3