remove std::vector in favor of std::initializor_list in GPUTargets.h

This commit is contained in:
Evghenii Gaburov
2015-02-24 12:54:06 +01:00
parent b35b931e3b
commit f481a51f39
3 changed files with 5 additions and 5 deletions

View File

@@ -36,5 +36,5 @@ met:
namespace GPUTargets
{
static const std::vector<std::string> computeMode = {"sm_35", "sm_37"};
static const auto computeMode = {"sm_35", "sm_37"};
}