diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-02-14 17:21:06 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-02-14 17:28:58 (GMT) |
commit | 1d0426f6426ef88342f3a57fb555a2b2d8891712 (patch) | |
tree | 995dd6d865e4ce1e2fa3b97396a19d47ed82b0f5 /Source/cmTarget.h | |
parent | 5b5869532145ff4425d7abfd09eaae6a638b6810 (diff) | |
download | CMake-1d0426f6426ef88342f3a57fb555a2b2d8891712.zip CMake-1d0426f6426ef88342f3a57fb555a2b2d8891712.tar.gz CMake-1d0426f6426ef88342f3a57fb555a2b2d8891712.tar.bz2 |
cmTarget: make Visibility an `enum class`
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 51bbd54..b96bdf2 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -46,11 +46,11 @@ class BTs; class cmTarget { public: - enum Visibility + enum class Visibility { - VisibilityNormal, - VisibilityImported, - VisibilityImportedGlobally + Normal, + Imported, + ImportedGlobally, }; enum class PerConfig |