diff options
author | John Hodge <tpg@mutabah.net> | 2018-06-04 13:21:22 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2018-06-04 13:21:22 +0800 |
commit | 42bdc18d4ba8f9fd19109050eb83bb6615539a75 (patch) | |
tree | 88501e01485038ad879160383b60c2e02b97f96e /src/macro_rules | |
parent | 8d99deade68a9c995101fd5944f9011fcf3dccc7 (diff) | |
download | mrust-42bdc18d4ba8f9fd19109050eb83bb6615539a75.tar.gz |
All - Ensure that all files have a header comment, remove some dead code
Diffstat (limited to 'src/macro_rules')
-rw-r--r-- | src/macro_rules/mod.cpp | 5 | ||||
-rw-r--r-- | src/macro_rules/pattern_checks.hpp | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/macro_rules/mod.cpp b/src/macro_rules/mod.cpp index 2613a0b4..6410d334 100644 --- a/src/macro_rules/mod.cpp +++ b/src/macro_rules/mod.cpp @@ -1,4 +1,9 @@ /* + * MRustC - Mutabah's Rust Compiler + * - By John Hodge (Mutabah/thePowersGang) + * + * macro_rules/mod.cpp + * - Top-level handling for macro_rules macros */ #include <common.hpp> #include "macro_rules.hpp" diff --git a/src/macro_rules/pattern_checks.hpp b/src/macro_rules/pattern_checks.hpp index 138f11a3..4ebbe915 100644 --- a/src/macro_rules/pattern_checks.hpp +++ b/src/macro_rules/pattern_checks.hpp @@ -1,4 +1,9 @@ /* + * MRustC - Mutabah's Rust Compiler + * - By John Hodge (Mutabah/thePowersGang) + * + * macro_rules/pattern_checks.hpp + * - Checking helpers for the fragement patterns */ #pragma once |