query/include/matador/utils/placeholder.hpp

15 lines
271 B
C++

#ifndef QUERY_PLACEHOLDER_HPP
#define QUERY_PLACEHOLDER_HPP
namespace matador::utils {
struct placeholder {};
inline constexpr bool operator==(const placeholder&, const placeholder&) { return true; }
static constexpr placeholder _;
}
#endif //QUERY_PLACEHOLDER_HPP