diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-12 22:50:42 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-13 14:27:23 (GMT) |
commit | c725bb3cbd51edd4043f81d01b7a01bbd42adb2f (patch) | |
tree | b4bfc2adbb46ea55af5bae98273d20b8cc0ec171 /Source/cmGlobalVisualStudio10Generator.cxx | |
parent | dcfcd23ed53d3bfe8ef299b8a3a38c47c27fa6b6 (diff) | |
download | CMake-c725bb3cbd51edd4043f81d01b7a01bbd42adb2f.zip CMake-c725bb3cbd51edd4043f81d01b7a01bbd42adb2f.tar.gz CMake-c725bb3cbd51edd4043f81d01b7a01bbd42adb2f.tar.bz2 |
Constify some APIs in generators.
Diffstat (limited to 'Source/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx index 840e888..37a416b 100644 --- a/Source/cmGlobalVisualStudio10Generator.cxx +++ b/Source/cmGlobalVisualStudio10Generator.cxx @@ -470,7 +470,7 @@ cmGlobalVisualStudio10Generator //---------------------------------------------------------------------------- void cmGlobalVisualStudio10Generator::PathTooLong( - cmTarget* target, cmSourceFile* sf, std::string const& sfRel) + cmTarget* target, cmSourceFile const* sf, std::string const& sfRel) { size_t len = (strlen(target->GetMakefile()->GetCurrentOutputDirectory()) + 1 + sfRel.length()); |