summaryrefslogtreecommitdiff
path: root/Source/cmDocumentationFormatter.h
diff options
context:
space:
mode:
authorAlex Turbov <i.zaufi@gmail.com>2022-08-23 06:14:00 +0400
committerAlex Turbov <i.zaufi@gmail.com>2022-11-16 18:37:05 +0400
commit30bcdafaeff789b20cc8b6e97b8271c0105a93b1 (patch)
treea234708d2e65fce950b8daad6788019aa32a287a /Source/cmDocumentationFormatter.h
parente2f12b6c8be2486bf37916c301015db4fd41e984 (diff)
downloadcmake-30bcdafaeff789b20cc8b6e97b8271c0105a93b1.tar.gz
cmDocumentation: Remove MSVC 6 workaround
Diffstat (limited to 'Source/cmDocumentationFormatter.h')
-rw-r--r--Source/cmDocumentationFormatter.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/Source/cmDocumentationFormatter.h b/Source/cmDocumentationFormatter.h
index cb3038aaa4..98cac9b4bb 100644
--- a/Source/cmDocumentationFormatter.h
+++ b/Source/cmDocumentationFormatter.h
@@ -6,40 +6,6 @@
#include <iosfwd>
-/** This is just a helper class to make it build with MSVC 6.0.
-Actually the enums and internal classes could directly go into
-cmDocumentation, but then MSVC6 complains in RequestedHelpItem that
-cmDocumentation is an undefined type and so it doesn't know the enums.
-Moving the enums to a class which is then already completely parsed helps
-against this. */
-class cmDocumentationEnums
-{
-public:
- /** Types of help provided. */
- enum Type
- {
- None,
- Version,
- Usage,
- Help,
- Full,
- ListManuals,
- ListCommands,
- ListModules,
- ListProperties,
- ListVariables,
- ListPolicies,
- ListGenerators,
- OneManual,
- OneCommand,
- OneModule,
- OneProperty,
- OneVariable,
- OnePolicy,
- OldCustomModules
- };
-};
-
class cmDocumentationSection;
/** Print documentation in a simple text format. */