any.hpp 164 B

123456789
  1. #pragma once
  2. namespace matcher {
  3. struct {} any;
  4. using any_t = decltype(any);
  5. template <typename T>
  6. bool operator==(T const &, any_t) { return true; }
  7. }