[Lldb-commits] [lldb] 7eb5022 - [lldb][NFC] Turn ChildCacheState into an unscoped enum (#88703)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 15 13:45:04 PDT 2024
Author: Michael Buch
Date: 2024-04-15T21:45:00+01:00
New Revision: 7eb5022cbb11fdf5e74d707b4c93d3669a46eccf
URL: https://github.com/llvm/llvm-project/commit/7eb5022cbb11fdf5e74d707b4c93d3669a46eccf
DIFF: https://github.com/llvm/llvm-project/commit/7eb5022cbb11fdf5e74d707b4c93d3669a46eccf.diff
LOG: [lldb][NFC] Turn ChildCacheState into an unscoped enum (#88703)
Done for consistency with the rest of the enums in
`lldb-enumerations.h`. See
https://github.com/llvm/llvm-project/pull/80167#issuecomment-2043721298
Added:
Modified:
lldb/include/lldb/lldb-enumerations.h
Removed:
################################################################################
diff --git a/lldb/include/lldb/lldb-enumerations.h b/lldb/include/lldb/lldb-enumerations.h
index f3b07ea6d20395..15e45857186091 100644
--- a/lldb/include/lldb/lldb-enumerations.h
+++ b/lldb/include/lldb/lldb-enumerations.h
@@ -1310,7 +1310,7 @@ enum CompletionType {
/// Specifies if children need to be re-computed
/// after a call to \ref SyntheticChildrenFrontEnd::Update.
-enum class ChildCacheState {
+enum ChildCacheState {
eRefetch = 0, ///< Children need to be recomputed dynamically.
eReuse = 1, ///< Children did not change and don't need to be recomputed;
More information about the lldb-commits
mailing list