Merge topic 'correct_namespace_for_ChooseCudaDevice'

2f98cdf7 Resolves Issue #56: ChooseCudaDevice functions are in the proper namespace.

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !347
This commit is contained in:
Robert Maynard 2016-02-26 14:38:17 -05:00 committed by Kitware Robot
commit 7c84e32835
2 changed files with 2 additions and 2 deletions

@ -27,8 +27,8 @@
#include <vector>
namespace vtkm{
namespace cuda{
namespace cont {
namespace cuda{
namespace {
struct compute_info

@ -100,7 +100,7 @@ public:
}
#ifdef VTKM_CUDA
int id = vtkm::cuda::cont::FindFastestDeviceId();
int id = vtkm::cont::cuda::FindFastestDeviceId();
vtkm::opengl::cuda::SetCudaGLDevice(id);
#endif