From c9514dc0d186bedefe9fbe774505a20fd9b4dd89 Mon Sep 17 00:00:00 2001 From: Ken Martin Date: Sun, 2 Mar 2008 09:12:27 -0500 Subject: [PATCH] COMP: possible fix for VS6, but probably not, probably need tomake it internal --- Source/cmPolicies.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Source/cmPolicies.h b/Source/cmPolicies.h index 2bb96b349..cf0b4bfbb 100644 --- a/Source/cmPolicies.h +++ b/Source/cmPolicies.h @@ -78,8 +78,9 @@ public: std::string GetRequiredPolicyError(cmPolicies::PolicyID id); private: - std::map Policies; - std::map PolicyStringMap; + // might have to make these internal for VS6 not sure yet + std::map Policies; + std::map PolicyStringMap; };