diff options
Diffstat (limited to 'lldb/source/Plugins/Process/Darwin/LaunchFlavor.h')
-rw-r--r-- | lldb/source/Plugins/Process/Darwin/LaunchFlavor.h | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h b/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h index 02182f7528a..7b161712cff 100644 --- a/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h +++ b/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h @@ -13,22 +13,21 @@ namespace lldb_private { namespace process_darwin { -enum class LaunchFlavor -{ - Default = 0, - PosixSpawn = 1, - ForkExec = 2, +enum class LaunchFlavor { + Default = 0, + PosixSpawn = 1, + ForkExec = 2, #ifdef WITH_SPRINGBOARD - SpringBoard = 3, + SpringBoard = 3, #endif #ifdef WITH_BKS - BKS = 4, + BKS = 4, #endif #ifdef WITH_FBS - FBS = 5 + FBS = 5 #endif }; - -}} // namespaces +} +} // namespaces #endif /* LaunchFlavor_h */ |