diff options
author | Brad King <brad.king@kitware.com> | 2010-08-20 17:16:43 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2010-08-25 21:05:01 (GMT) |
commit | 95b3bb5dbcb6021f07329f5bc400b1a205386970 (patch) | |
tree | 4e8860daa2796cb31fca0e3db79d544cd167f224 /Source/cmGlobalGenerator.h | |
parent | e752cff8fd9c5f27e066d5916221bd609bfeba29 (diff) | |
download | CMake-95b3bb5dbcb6021f07329f5bc400b1a205386970.zip CMake-95b3bb5dbcb6021f07329f5bc400b1a205386970.tar.gz CMake-95b3bb5dbcb6021f07329f5bc400b1a205386970.tar.bz2 |
Restore GetTargetDirectDepends const return
The returned set should never be modified. Restore 'const' correctness
unnecessarily removed by commit 6903d2df (remove const, 2008-01-30).
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 878be11..9d5aa57 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -238,7 +238,7 @@ public: // what targets does the specified target depend on directly // via a target_link_libraries or add_dependencies - TargetDependSet & GetTargetDirectDepends(cmTarget & target); + TargetDependSet const& GetTargetDirectDepends(cmTarget & target); const std::map<cmStdString, std::vector<cmLocalGenerator*> >& GetProjectMap() const {return this->ProjectMap;} |