diff options
Diffstat (limited to 'src/hir/hir.hpp')
-rw-r--r-- | src/hir/hir.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hir/hir.hpp b/src/hir/hir.hpp index 80c18b41..e18f6631 100644 --- a/src/hir/hir.hpp +++ b/src/hir/hir.hpp @@ -51,7 +51,7 @@ TAGGED_UNION(Literal, Invalid, (List, ::std::vector<Literal>), // TODO: Have a variant for repetition lists (Integer, uint64_t), (Float, double), - (BorrowOf, ::HIR::SimplePath), + (BorrowOf, ::HIR::Path), // String = &'static str or &[u8; N] (String, ::std::string) ); |