forked from OSchip/llvm-project
[lldb][NFC] Fix build with GCC<6
GCC/libstdc++ before 6.1 can't handle scoped enums as unordered_map keys. LLVM (and some build) bots officially support some GCC 5.x versions, so this patch just makes the enum unscoped until we can require GCC 6.x.
This commit is contained in:
parent
726de41e2b
commit
37510f69b4
|
@ -1125,7 +1125,7 @@ public:
|
|||
/// These ASTs are isolated from the main scratch AST and are each
|
||||
/// dedicated to a special language option/feature that makes the contained
|
||||
/// AST nodes incompatible with other AST nodes.
|
||||
enum class IsolatedASTKind {
|
||||
enum IsolatedASTKind {
|
||||
/// The isolated AST for declarations/types from expressions that imported
|
||||
/// type information from a C++ module. The templates from a C++ module
|
||||
/// often conflict with the templates we generate from debug information,
|
||||
|
|
Loading…
Reference in New Issue