diff options
author | Sumit Bhardwaj <bhardwajs@outlook.com> | 2021-12-01 13:21:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-12-01 14:51:26 (GMT) |
commit | a80d95b1147437b9fa934e74d586ee41029eaee2 (patch) | |
tree | 89f4740c19a56b87df8e282e5c57183d90e9a41d /Source/cmVisualStudio10TargetGenerator.h | |
parent | 2097f9a3a48b60d6da54ce9a8e9d0baac0e2ca14 (diff) | |
download | CMake-a80d95b1147437b9fa934e74d586ee41029eaee2.zip CMake-a80d95b1147437b9fa934e74d586ee41029eaee2.tar.gz CMake-a80d95b1147437b9fa934e74d586ee41029eaee2.tar.bz2 |
cmVisualStudio10TargetGenerator: Change VsProjectType to be enum class
Diffstat (limited to 'Source/cmVisualStudio10TargetGenerator.h')
-rw-r--r-- | Source/cmVisualStudio10TargetGenerator.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmVisualStudio10TargetGenerator.h b/Source/cmVisualStudio10TargetGenerator.h index e4b48c3..ec6362f 100644 --- a/Source/cmVisualStudio10TargetGenerator.h +++ b/Source/cmVisualStudio10TargetGenerator.h @@ -209,7 +209,8 @@ private: OptionsMap NasmOptions; OptionsMap LinkOptions; std::string LangForClCompile; - enum VsProjectType + + enum class VsProjectType { vcxproj, csproj |