diff options
author | John Hodge <tpg@mutabah.net> | 2016-03-31 11:10:05 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-03-31 11:10:05 +0800 |
commit | d5b39c4fcf80a1e84aee6080351dc990c0aa8963 (patch) | |
tree | 47212669e50e453f76baa580c6565327522655c1 /src/ast/attrs.hpp | |
parent | 0397724cfdbff39773ecc825dc25917b860ee982 (diff) | |
download | mrust-d5b39c4fcf80a1e84aee6080351dc990c0aa8963.tar.gz |
AST - Put spans on imports
Diffstat (limited to 'src/ast/attrs.hpp')
-rw-r--r-- | src/ast/attrs.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ast/attrs.hpp b/src/ast/attrs.hpp index 6a6cdaa7..82cf2154 100644 --- a/src/ast/attrs.hpp +++ b/src/ast/attrs.hpp @@ -14,7 +14,7 @@ public: ::std::vector<MetaItem> m_items; MetaItems() {} - MetaItems(MetaItems&&) = default; + MetaItems(MetaItems&&) noexcept = default; MetaItems& operator=(MetaItems&&) = default; MetaItems(const MetaItems&) = delete; MetaItems(::std::vector<MetaItem> items): |