QtAutogen: Don't take a reference to temporary.
While a const reference to a temporary is standard conformant, it doesn't seem to be necessary or advantageous here.
This commit is contained in:
parent
d526ebc603
commit
bf00f5287b
|
@ -1500,7 +1500,7 @@ void cmQtAutoGenerators::Init()
|
|||
|
||||
if (this->IncludeProjectDirsBefore)
|
||||
{
|
||||
const std::string &binDir = "-I" + this->ProjectBinaryDir;
|
||||
const std::string binDir = "-I" + this->ProjectBinaryDir;
|
||||
|
||||
const std::string srcDir = "-I" + this->ProjectSourceDir;
|
||||
|
||||
|
|
Loading…
Reference in New Issue