summaryrefslogtreecommitdiffstats
path: root/Source/cmState.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-06-14 18:27:37 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-06-21 18:13:28 (GMT)
commitccf7760f0035e2e0458ba59e29ab302a2d07c388 (patch)
treec70f5585c89564ee01f15023883d34bcb51b73d9 /Source/cmState.h
parent155ef535974ab9e78e98da00b63f31bd5c848bd0 (diff)
downloadCMake-ccf7760f0035e2e0458ba59e29ab302a2d07c388.zip
CMake-ccf7760f0035e2e0458ba59e29ab302a2d07c388.tar.gz
CMake-ccf7760f0035e2e0458ba59e29ab302a2d07c388.tar.bz2
cmOutputConverter: Constify API.
Diffstat (limited to 'Source/cmState.h')
-rw-r--r--Source/cmState.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmState.h b/Source/cmState.h
index 353a6c6..070a08b 100644
--- a/Source/cmState.h
+++ b/Source/cmState.h
@@ -43,8 +43,10 @@ public:
const char* GetCurrentBinaryDirectory() const;
void SetCurrentBinaryDirectory(std::string const& dir);
- std::vector<std::string> const& GetCurrentSourceDirectoryComponents();
- std::vector<std::string> const& GetCurrentBinaryDirectoryComponents();
+ std::vector<std::string> const&
+ GetCurrentSourceDirectoryComponents() const;
+ std::vector<std::string> const&
+ GetCurrentBinaryDirectoryComponents() const;
const char* GetRelativePathTopSource() const;
const char* GetRelativePathTopBinary() const;