Browse Source

chore: cleanup

Sam Jaffe 3 months ago
parent
commit
631c09eb8c
2 changed files with 1 additions and 3 deletions
  1. 1 1
      include/jvalidate/validation_result.h
  2. 0 2
      tests/selfvalidate_test.cxx

+ 1 - 1
include/jvalidate/validation_result.h

@@ -13,7 +13,7 @@ namespace jvalidate {
 class ValidationResult {
 public:
   // Only allow ValidationVisitor to construct the elements of a validation result
-  template <Adapter A, RegexEngine RE> friend class ValidationVisitor;
+  template <Adapter, RegexEngine> friend class ValidationVisitor;
 
   using DocPointer = detail::Pointer;
   using SchemaPointer = detail::Pointer;

+ 0 - 2
tests/selfvalidate_test.cxx

@@ -3,8 +3,6 @@
 #include <filesystem>
 #include <fstream>
 #include <iostream>
-#include <regex>
-#include <unordered_set>
 
 #include <curl/curl.h>
 #include <gmock/gmock.h>