Fix missing declaration of std::numeric_limits (#5002)

This fixes the errors:
validate_ray_tracing_reorder.cpp:25:49: error: 'numeric_limits' is not a member of 'std'
This commit is contained in:
Biswapriyo Nath 2022-11-25 21:24:38 +05:30 committed by GitHub
parent f33d152400
commit 9a6f4121f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,8 @@
#include "source/val/validate.h"
#include "source/val/validation_state.h"
#include <limits>
namespace spvtools {
namespace val {