forked from OSchip/llvm-project
Attempt to fix build with MSVC.
MSVC appears to instantiate the virtual members of FoldingSet when instantiating the class definition, thereby requiring the element type to be defined so that its hash function is known. This is intended to be a temporary fix; ideally, FoldingSet should not require this.
This commit is contained in:
parent
57acbaece1
commit
30853cd689
|
@ -21,6 +21,7 @@
|
|||
#include "clang/AST/ComparisonCategories.h"
|
||||
#include "clang/AST/Decl.h"
|
||||
#include "clang/AST/DeclBase.h"
|
||||
#include "clang/AST/DeclCXX.h"
|
||||
#include "clang/AST/DeclarationName.h"
|
||||
#include "clang/AST/ExternalASTSource.h"
|
||||
#include "clang/AST/NestedNameSpecifier.h"
|
||||
|
|
Loading…
Reference in New Issue