This commit is contained in:
codeboss 2024-11-17 23:06:22 +08:00
parent ab59a981fa
commit 93247b6231
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ int vp(int c) {
return c; return c;
} }
verify::T<int(int)>::Validation<vp> vp_check; verify::T<int(int)>::Validation<vp> vp_check;
auto args0 = vp_check.pos<0>() & new impls::Int32Limit<true, true>(QString(u8"Hello World"), 0, 3); auto args0 = vp_check.pos<0>() & new impls::Int32Limit<true, true>(u8"Hello World", 0, 3);
namespace xproc { namespace xproc {

View File

@ -1,6 +1,6 @@
#pragma once #pragma once
#include "validation.h" #include "validation_basic.h"
namespace impls { namespace impls {
template<bool min_equal, bool max_equal, uint precision> template<bool min_equal, bool max_equal, uint precision>