Browse Source

interrogate: Fix missing namespace qualification

Sam Edwards 7 years ago
parent
commit
9fefa1d2e6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dtool/src/interrogate/functionWriters.h

+ 1 - 1
dtool/src/interrogate/functionWriters.h

@@ -42,7 +42,7 @@ protected:
     }
   };
 
-  typedef set<FunctionWriter *, IndirectCompareTo> Writers;
+  typedef std::set<FunctionWriter *, IndirectCompareTo> Writers;
   Writers _writers;
 };