Normalize constructor call syntax, NFCI.

llvm-svn: 308275
This commit is contained in:
Serge Guelton 2017-07-18 08:36:22 +00:00
parent ddc38722a4
commit ad9bbc20b3
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ std::unique_ptr<RandomNumberGenerator> Module::createRNG(const Pass* P) const {
// store salt metadata from the Module constructor.
Salt += sys::path::filename(getModuleIdentifier());
return std::unique_ptr<RandomNumberGenerator>{new RandomNumberGenerator(Salt)};
return std::unique_ptr<RandomNumberGenerator>(new RandomNumberGenerator(Salt));
}
/// getNamedValue - Return the first global value in the module with