rustycpp 0.1.6

An attempt to implement the C++20 standard. This is mostly to have fun & learn rust
//! Generated antlr grammars
#![allow(
    dead_code,
    missing_docs,
    clippy::all,
    clippy::pedantic,
    clippy::nursery,
    clippy::restriction
)]

/// Include generated grammar
macro_rules! include_generated {
    ($name:ident) => {
        include!(concat!(
            env!("OUT_DIR"),
            "/generated/",
            stringify!($name),
            ".mod"
        ));
    };
}

include_generated!(macrointconstantexpressionast);