diff options
Diffstat (limited to 'src/trans/trans_list.cpp')
-rw-r--r-- | src/trans/trans_list.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/trans/trans_list.cpp b/src/trans/trans_list.cpp new file mode 100644 index 00000000..4df20373 --- /dev/null +++ b/src/trans/trans_list.cpp @@ -0,0 +1,19 @@ +/* + * MRustC - Rust Compiler + * - By John Hodge (Mutabah/thePowersGang) + * + * trans/trans_list.cpp + * - A list of items that require translation + */ +#include "trans_list.hpp" + +bool TransList::add_function(::HIR::Path p, const ::HIR::Function& f) +{ + TODO(Span(), ""); + return false; +} +bool TransList::add_static(::HIR::Path p, const ::HIR::Static& f) +{ + TODO(Span(), ""); + return false; +} |