cuda-samples
cuda-samples copied to clipboard
VulkanBaseApp.cpp is using std::numeric_limits but not including <limits>
Lines 696, 1691 and 1695 of VulkanBaseApp.cpp in the simpleVulkanMMap sample are using std::numeric_limits in VulkanBaseApp.cpp but #include <limits> isn't added to correctly reference.
Please add #include <limits> in the beginning.
Anologue for the simpleVulkan sample.
@Dryn I encountered same problem. And, I found this PR(https://github.com/NVIDIA/cuda-samples/pull/135) to resolve this problem.