summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorPavel Solodovnikov <hellyeahdominate@gmail.com>2017-05-30 19:46:05 (GMT)
committerBrad King <brad.king@kitware.com>2017-06-01 18:19:52 (GMT)
commitdb2d46e2ddbdf1c5d942e70b341e085f84e79c13 (patch)
tree37d613c818fcf588664ea3ac6cacc83d9966b176 /Source/CTest
parent8b6f439ef20cf882b4f3deba48f34a01a98963d9 (diff)
downloadCMake-db2d46e2ddbdf1c5d942e70b341e085f84e79c13.zip
CMake-db2d46e2ddbdf1c5d942e70b341e085f84e79c13.tar.gz
CMake-db2d46e2ddbdf1c5d942e70b341e085f84e79c13.tar.bz2
Remove second arg: npos in substr usages
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmParseBlanketJSCoverage.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmParseBlanketJSCoverage.cxx b/Source/CTest/cmParseBlanketJSCoverage.cxx
index f7f3e41..83a7b75 100644
--- a/Source/CTest/cmParseBlanketJSCoverage.cxx
+++ b/Source/CTest/cmParseBlanketJSCoverage.cxx
@@ -35,7 +35,7 @@ public:
line.substr(begIndex + 3, endIndex - (begIndex + 4));
return foundFileName;
}
- return line.substr(begIndex, std::string::npos);
+ return line.substr(begIndex);
}
bool ParseFile(std::string const& file)
{
@@ -78,7 +78,7 @@ public:
* only the value of the line coverage is captured
*/
std::string result = getValue(line, 1);
- result = result.substr(2, std::string::npos);
+ result = result.substr(2);
if (result == "\"\"") {
// Empty quotation marks indicate that the
// line is not executable