diff options
author | Brad King <brad.king@kitware.com> | 2016-03-09 09:42:04 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-03-09 09:42:04 -0500 |
commit | cd9ba3ec453d547b15ab761e20793a1a17bbbd8d (patch) | |
tree | 65c1fcf0cf7b2e09dfbcdf6f84d3002c0be68bd6 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | b19bc31277bb2e3dd75e78f64924be3955ea8c6d (diff) | |
download | cmake-cd9ba3ec453d547b15ab761e20793a1a17bbbd8d.tar.gz |
cmLocalVisualStudio7Generator: Fix name of helper function
Rename `cmLVS6G_IsFAT` to `cmLVS7G_IsFAT` since it is for the local
VS 7 generator and not VS 6.
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index ae6a24e26a..adfbe2aaf7 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -25,7 +25,7 @@ #include <ctype.h> // for isspace -static bool cmLVS6G_IsFAT(const char* dir); +static bool cmLVS7G_IsFAT(const char* dir); class cmLocalVisualStudio7GeneratorInternals { @@ -999,7 +999,7 @@ void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout, // Check if we need the FAT32 workaround. // Check the filesystem type where the target will be written. - if (cmLVS6G_IsFAT(target->GetDirectory(configName).c_str())) + if (cmLVS7G_IsFAT(target->GetDirectory(configName).c_str())) { // Add a flag telling the manifest tool to use a workaround // for FAT32 file systems, which can cause an empty manifest @@ -2365,7 +2365,7 @@ std::string cmLocalVisualStudio7Generator //---------------------------------------------------------------------------- #include <windows.h> -static bool cmLVS6G_IsFAT(const char* dir) +static bool cmLVS7G_IsFAT(const char* dir) { if(dir[0] && dir[1] == ':') { |