summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorMarc Chevrier <marc.chevrier@gmail.com>2021-09-21 15:38:59 (GMT)
committerMarc Chevrier <marc.chevrier@gmail.com>2021-09-21 16:11:00 (GMT)
commit59ad7a1c243022284f8475e0bebbe1864ee23928 (patch)
treee18411eb48077bc54128e29394474bce7a913c5b /Source/CTest
parentedf67dd039f40a4222e41cc15a197cb6395bf885 (diff)
downloadCMake-59ad7a1c243022284f8475e0bebbe1864ee23928.zip
CMake-59ad7a1c243022284f8475e0bebbe1864ee23928.tar.gz
CMake-59ad7a1c243022284f8475e0bebbe1864ee23928.tar.bz2
Move helpers functions from cmStringAlgorithms.h to cmValue.h
Helpers functions related to cmValue semantic are now part of cmValue.h header.
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestGIT.cxx1
-rw-r--r--Source/CTest/cmCTestVC.cxx2
2 files changed, 2 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestGIT.cxx b/Source/CTest/cmCTestGIT.cxx
index 568b091..d85edcc 100644
--- a/Source/CTest/cmCTestGIT.cxx
+++ b/Source/CTest/cmCTestGIT.cxx
@@ -18,6 +18,7 @@
#include "cmProcessTools.h"
#include "cmStringAlgorithms.h"
#include "cmSystemTools.h"
+#include "cmValue.h"
static unsigned int cmCTestGITVersion(unsigned int epic, unsigned int major,
unsigned int minor, unsigned int fix)
diff --git a/Source/CTest/cmCTestVC.cxx b/Source/CTest/cmCTestVC.cxx
index 452d714..423b506 100644
--- a/Source/CTest/cmCTestVC.cxx
+++ b/Source/CTest/cmCTestVC.cxx
@@ -10,8 +10,8 @@
#include "cmsys/Process.h"
#include "cmCTest.h"
-#include "cmStringAlgorithms.h"
#include "cmSystemTools.h"
+#include "cmValue.h"
#include "cmXMLWriter.h"
cmCTestVC::cmCTestVC(cmCTest* ct, std::ostream& log)