diff options
author | John Hodge <tpg@mutabah.net> | 2016-09-07 11:38:03 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-09-07 11:38:03 +0800 |
commit | 57df16360d231f60d2030f490c1e73149b47857d (patch) | |
tree | ab9d5051f96822fd33e49efd3b5a096b37199832 /src/ast/crate.hpp | |
parent | 93f6933b3b0493644e40be87de9b1955457c7da4 (diff) | |
download | mrust-57df16360d231f60d2030f490c1e73149b47857d.tar.gz |
LoadCrates - Better error reporting
Diffstat (limited to 'src/ast/crate.hpp')
-rw-r--r-- | src/ast/crate.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/crate.hpp b/src/ast/crate.hpp index 4b8a42c5..146c05f6 100644 --- a/src/ast/crate.hpp +++ b/src/ast/crate.hpp @@ -50,7 +50,7 @@ public: /// Load referenced crates void load_externs(); - void load_extern_crate(const ::std::string& name); + void load_extern_crate(Span sp, const ::std::string& name); }; /// Representation of an imported crate |