diff options
author | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-22 15:42:02 +0800 |
---|---|---|
committer | John Hodge (sonata) <tpg@mutabah.net> | 2015-01-22 15:42:02 +0800 |
commit | 1febf19e71549e622420f50f25099ba3005a1133 (patch) | |
tree | c14a4c4f6632509c227accaeecb9f773d4e8aad4 /src/ast/ast.cpp | |
parent | ad85a9a2a260a0ff5744c0573f679984de622b74 (diff) | |
download | mrust-1febf19e71549e622420f50f25099ba3005a1133.tar.gz |
(minor) Comment update
Diffstat (limited to 'src/ast/ast.cpp')
-rw-r--r-- | src/ast/ast.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ast/ast.cpp b/src/ast/ast.cpp index a5af04f5..b8de6d4c 100644 --- a/src/ast/ast.cpp +++ b/src/ast/ast.cpp @@ -107,6 +107,7 @@ const Module& Crate::get_root_module(const ::std::string& name) const { Impl& Crate::find_impl(const TypeRef& trait, const TypeRef& type)
{
+ // TODO: Support autoderef here?
throw ParseError::Generic( FMT("TODO: Lookup impl of " << trait << " for type " << type));
}
|