diff options
Diffstat (limited to 'Source/cmDependsC.cxx')
-rw-r--r-- | Source/cmDependsC.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDependsC.cxx b/Source/cmDependsC.cxx index a404ae8..2c464cc 100644 --- a/Source/cmDependsC.cxx +++ b/Source/cmDependsC.cxx @@ -453,7 +453,7 @@ void cmDependsC::ParseTransform(std::string const& xform) return; } std::string name = xform.substr(0, pos); - std::string value = xform.substr(pos + 4, std::string::npos); + std::string value = xform.substr(pos + 4); this->TransformRules[name] = value; } |