Hi everyone. <br>I am using visual studio to compile the Clang. The compile output an error saying:<br>Error    60    error C2039: 'Profile' : is not a member of 'llvm::ImmutableList<T>'    llvm-2.4\include\llvm\ADT\FoldingSet.h    199<br>
<br>what is wrong with that?  the declaration is:<br>template<typename T> <br>struct FoldingSetTrait {<br>  static inline void Profile(const T& X, FoldingSetNodeID& ID) { X.Profile(ID);}<br>  static inline void Profile(T& X, FoldingSetNodeID& ID) { X.Profile(ID); }<br>
};<br><br>very odd things...Can anyone explain what is wrong with that?<br><br><br>