Files
Christian Poveda 1213b3dfb1 split the repo into a workspace
remove `clap` dependency 🎉

update the book installation instructions
2022-10-04 20:47:17 -05:00

16 lines
477 B
C

// bindgen-flags: --rustified-enum '.*Rustified.*' --constified-enum-module '.*Module.*' -- -x c++ --std=c++14
// Constified is default, so no flag for that.
enum EmptyConstified {};
enum EmptyRustified {};
enum EmptyModule {};
enum class EmptyClassRustified : char {};
enum class EmptyClassConstified : char {};
enum class EmptyClassModule : char {};
enum class ForwardClassRustified : char;
enum class ForwardClassConstified : char;
enum class ForwardClassModule : char;