diff options
author | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-17 09:49:54 +0100 |
---|---|---|
committer | Claudius "keldu" Holeksa <mail@keldu.de> | 2024-02-17 09:49:54 +0100 |
commit | 97d78a6db152d60aa011b81848993e45cb360bde (patch) | |
tree | 13ddf9552ae0d49a90d9ede91db472740b7d5e38 /modules/tools | |
parent | 35635f5514a9f702b5606146bf9ff4494030ff8f (diff) |
tools: Dangling changes
Diffstat (limited to 'modules/tools')
-rw-r--r-- | modules/tools/c++/c_gen_iface.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/tools/c++/c_gen_iface.hpp b/modules/tools/c++/c_gen_iface.hpp index ceb6fef..b55816c 100644 --- a/modules/tools/c++/c_gen_iface.hpp +++ b/modules/tools/c++/c_gen_iface.hpp @@ -483,5 +483,19 @@ error_or<void> generate_c_interface(data<schema::CIface>& state){ auto eov = c_data_translater<Interface>::generate(state); return eov; } +/* +namespace lang { +struct C {}; +} + +template<typename Iface, typename T> +class binding; +template<typename Iface> +class binding<Iface, lang::C> { +public: + static constexpr string_literal header; + static constexpr string_literal source; +}; +*/ } |