Skip to content

Commit 5457138

Browse files
committed
DOC: fixing "unbalanced grouping commands" warnings
- error during test - remove some small things left about the itkgroup
1 parent 630350e commit 5457138

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Modules/Core/Common/include/itkPlatformMultiThreader.h

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,3 +182,12 @@ class ITKCommon_EXPORT PlatformMultiThreader : public MultiThreaderBase
182182

183183
/** wait for a thread in the threadpool to finish work */
184184
void SpawnWaitForSingleMethodThread(ThreadProcessIdType);
185+
186+
/** Friends of Multithreader.
187+
* ProcessObject is a friend so that it can call PrintSelf() on its
188+
* Multithreader. */
189+
friend class ProcessObject;
190+
};
191+
} // end namespace itk
192+
#endif // itkPlatformMultiThreader_h
193+

Utilities/Doxygen/CMakeLists.txt

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,13 +108,6 @@ mark_as_advanced(
108108
ITK_DOXYGEN_XML
109109
ITK_DOXYGEN_SERVER_BASED_SEARCH)
110110

111-
if(Python3_EXECUTABLE)
112-
set(ITK_DOXYGEN_INPUT_FILTER "${Python3_EXECUTABLE} ${CMAKE_CURRENT_SOURCE_DIR}/itkgroup.py")
113-
114-
else()
115-
set(ITK_DOXYGEN_INPUT_FILTER)
116-
endif()
117-
118111
# -------------------------------------------------------------
119112
if(ITK_BUILD_DOCUMENTATION)
120113

Wrapping/DoxygenConfig.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ set(DOXYGEN_EXAMPLE_PATH "${DOXYGEN_TEST_DIRS}")
5252
set(DOXYGEN_EXAMPLE_PATTERNS "*.cxx")
5353
set(DOXYGEN_EXAMPLE_RECURSIVE "YES")
5454
set(DOXYGEN_IMAGE_PATH "${ITK_SOURCE_DIR}/Documentation/Art" "${ITK_BINARY_DIR}/Utilities/Doxygen/Modules")
55-
set(DOXYGEN_INPUT_FILTER "${ITK_DOXYGEN_INPUT_FILTER}")
5655
set(DOXYGEN_FILTER_SOURCE_FILES "YES")
5756
set(DOXYGEN_SOURCE_BROWSER "YES")
5857
set(DOXYGEN_REFERENCED_BY_RELATION "YES")

0 commit comments

Comments
 (0)