summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentation.h
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-07-03 12:26:32 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-07-03 12:26:32 (GMT)
commitad2fe23f6f8f8c34079a8c3277aec0844188f7e0 (patch)
tree543bedaf1c293d8c46ba4743e89d993591bee443 /Source/cmDocumentation.h
parentfa9dd93d958c4833d3b2180fdfc57388b4114f26 (diff)
downloadCMake-ad2fe23f6f8f8c34079a8c3277aec0844188f7e0.zip
CMake-ad2fe23f6f8f8c34079a8c3277aec0844188f7e0.tar.gz
CMake-ad2fe23f6f8f8c34079a8c3277aec0844188f7e0.tar.bz2
COMP: fix compile on HP-UX with aCC, reusing the same identifier for a
variable as for the enum type doesn't work here Alex
Diffstat (limited to 'Source/cmDocumentation.h')
-rw-r--r--Source/cmDocumentation.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmDocumentation.h b/Source/cmDocumentation.h
index 64a288d..abfd258 100644
--- a/Source/cmDocumentation.h
+++ b/Source/cmDocumentation.h
@@ -262,9 +262,9 @@ private:
struct RequestedHelpItem
{
- RequestedHelpItem():Form(TextForm), Type(None) {}
- cmDocumentationEnums::Form Form;
- cmDocumentationEnums::Type Type;
+ RequestedHelpItem():HelpForm(TextForm), HelpType(None) {}
+ cmDocumentationEnums::Form HelpForm;
+ cmDocumentationEnums::Type HelpType;
std::string Filename;
std::string Argument;
};