COMP: possible fix for VS6, but probably not, probably need tomake it internal

This commit is contained in:
Ken Martin 2008-03-02 09:12:27 -05:00
parent 7b5d1c4c1e
commit c9514dc0d1
1 changed files with 3 additions and 2 deletions

View File

@ -78,8 +78,9 @@ public:
std::string GetRequiredPolicyError(cmPolicies::PolicyID id);
private:
std::map<cmPolicies::PolicyID,cmPolicy *> Policies;
std::map<std::string,cmPolicies::PolicyID> PolicyStringMap;
// might have to make these internal for VS6 not sure yet
std::map<PolicyID,cmPolicy *> Policies;
std::map<std::string,PolicyID> PolicyStringMap;
};