MCPcopy Create free account
hub / github.com/Kitware/CMake / Update

Method Update

Source/cmSourceFileLocation.cxx:70–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68}
69
70void cmSourceFileLocation::Update(cmSourceFileLocation const& loc)
71{
72 if (this->AmbiguousDirectory && !loc.AmbiguousDirectory) {
73 this->Directory = loc.Directory;
74 this->AmbiguousDirectory = false;
75 }
76 if (this->AmbiguousExtension && !loc.AmbiguousExtension) {
77 this->Name = loc.Name;
78 this->AmbiguousExtension = false;
79 }
80}
81
82void cmSourceFileLocation::DirectoryUseSource()
83{

Callers 1

MatchesMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected