RequestHandler: Fix IsValid() input parameter

This commit is contained in:
tt2468 2021-12-19 00:36:56 -08:00
parent 4a193d44a1
commit 2e8622e8d7

View File

@ -77,7 +77,7 @@ namespace RequestBatchExecutionType {
Parallel = 2,
};
inline bool IsValid(uint8_t executionType)
inline bool IsValid(int executionType)
{
return executionType >= None && executionType <= Parallel;
}