initial matador ng commit

This commit is contained in:
2025-02-02 20:37:12 +01:00
parent 19de5714f4
commit ded3daceb3
378 changed files with 14913 additions and 13431 deletions
+14
View File
@@ -0,0 +1,14 @@
#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