summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-02-14 17:21:06 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2023-02-14 17:28:58 (GMT)
commit1d0426f6426ef88342f3a57fb555a2b2d8891712 (patch)
tree995dd6d865e4ce1e2fa3b97396a19d47ed82b0f5 /Source/cmTarget.h
parent5b5869532145ff4425d7abfd09eaae6a638b6810 (diff)
downloadCMake-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.h8
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