Browse Source

ENH: fix compile error

Andy Cedilnik 20 years ago
parent
commit
63a5effc7f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Source/cmDependsC.h

+ 2 - 2
Source/cmDependsC.h

@@ -67,7 +67,7 @@ protected:
 
   // Set of generated files available.
   std::set<cmStdString> const* m_GeneratedFiles;
-
+public:
   // Data structures for dependency graph walk.
   struct UnscannedEntry
   {
@@ -81,7 +81,7 @@ protected:
     std::list<UnscannedEntry> m_UnscannedEntries;
     bool m_Used;
   };
-
+protected:
   std::set<cmStdString> m_Encountered;
   std::queue<UnscannedEntry> m_Unscanned;
   t_CharBuffer m_Buffer;