补全边角

This commit is contained in:
2026-08-08 21:21:23 +08:00
parent a6d6f8c6d3
commit c51c9d2937
24 changed files with 359 additions and 56 deletions
+8
View File
@@ -0,0 +1,8 @@
#include <structive/property/property.hpp>
struct Missing_Key {
int value{};
};
int main() {
auto schema = structive::object<Missing_Key>(structive::field<&Missing_Key::value>());
return static_cast<int>(schema.property_count);
}