diff options
author | John Hodge <tpg@ucc.asn.au> | 2018-01-21 16:25:41 +0800 |
---|---|---|
committer | John Hodge <tpg@ucc.asn.au> | 2018-01-21 16:25:41 +0800 |
commit | 7932cf76d7e783ea76a9b117f33ca45d07db26af (patch) | |
tree | f770cb3531adaf88295bfe4fd37789ecd510c394 /src/ast/crate.hpp | |
parent | f6222e86fcb11093dc3e6d758b59e74fa6801a5a (diff) | |
download | mrust-7932cf76d7e783ea76a9b117f33ca45d07db26af.tar.gz |
Main - Add very crude depfile support
Diffstat (limited to 'src/ast/crate.hpp')
-rw-r--r-- | src/ast/crate.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ast/crate.hpp b/src/ast/crate.hpp index b8d7be16..d6628901 100644 --- a/src/ast/crate.hpp +++ b/src/ast/crate.hpp @@ -51,6 +51,8 @@ public: bool m_test_harness = false; ::std::vector<TestDesc> m_tests; + //::std::vector<::std::string> m_extra_files; + // Procedural macros! ::std::vector<ProcMacroDef> m_proc_macros; |