Skip to content

Commit

Permalink
Use int for IntArrayLengthValidator
Browse files Browse the repository at this point in the history
  • Loading branch information
robertapplin committed Apr 25, 2024
1 parent ccc6417 commit 0ba036f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -49,6 +49,6 @@ namespace {

void export_ArrayLengthValidator() {
EXPORT_LENGTHVALIDATOR(double, Float);
EXPORT_LENGTHVALIDATOR(long, Int);
EXPORT_LENGTHVALIDATOR(int, Int);
EXPORT_LENGTHVALIDATOR(std::string, String);
}
Expand Up @@ -25,5 +25,5 @@ template <typename TYPE> ArrayOrderedPairsValidator<TYPE> *createArrayOrderedPai
} // namespace
void export_ArrayOrderedPairsValidator() {
EXPORT_PAIRSVALIDATOR(double, Float);
EXPORT_PAIRSVALIDATOR(long, Int);
EXPORT_PAIRSVALIDATOR(int, Int);
}

0 comments on commit 0ba036f

Please sign in to comment.