diff options
author | Pyry Haulos <phaulos@google.com> | 2017-03-30 16:42:23 -0700 |
---|---|---|
committer | Pyry Haulos <phaulos@google.com> | 2017-04-03 10:30:54 -0700 |
commit | 674ddbb09a7bb6b16f839e129d5f0f2ac6dc9e74 (patch) | |
tree | 23e571c3d72af668b2fc32f539b336325901371c /executor | |
parent | adde8239d7472f7475f027a198c22d0a28403400 (diff) | |
download | VK-GL-CTS-674ddbb09a7bb6b16f839e129d5f0f2ac6dc9e74.tar.gz VK-GL-CTS-674ddbb09a7bb6b16f839e129d5f0f2ac6dc9e74.tar.bz2 VK-GL-CTS-674ddbb09a7bb6b16f839e129d5f0f2ac6dc9e74.zip |
Fix GCC 6.3 warnings in vulkan-cts-1.0.2
Change-Id: Iede7ed79a031ab38c0665d1a115e34d034d2b662
Diffstat (limited to 'executor')
-rw-r--r-- | executor/tools/xeCommandLineExecutor.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/executor/tools/xeCommandLineExecutor.cpp b/executor/tools/xeCommandLineExecutor.cpp index 2a9af617f..d14a1aae2 100644 --- a/executor/tools/xeCommandLineExecutor.cpp +++ b/executor/tools/xeCommandLineExecutor.cpp @@ -31,6 +31,7 @@ #include "deCommandLine.hpp" #include "deDirectoryIterator.hpp" #include "deStringUtil.hpp" +#include "deUniquePtr.hpp" #include "deString.h" @@ -604,7 +605,7 @@ void runExecutor (const CommandLine& cmdLine) readLogFile(&batchResult, cmdLine.inFile.c_str()); // Initialize commLink. - std::auto_ptr<xe::CommLink> commLink(createCommLink(cmdLine)); + de::UniquePtr<xe::CommLink> commLink(createCommLink(cmdLine)); xe::BatchExecutor executor(cmdLine.targetCfg, commLink.get(), &root, testSet, &batchResult, &infoLog); |