diff options
Diffstat (limited to 'gcc/rust/expand/rust-macro-builtins-log-debug.cc')
-rw-r--r-- | gcc/rust/expand/rust-macro-builtins-log-debug.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/rust/expand/rust-macro-builtins-log-debug.cc b/gcc/rust/expand/rust-macro-builtins-log-debug.cc index 56bd303..44fb5b6 100644 --- a/gcc/rust/expand/rust-macro-builtins-log-debug.cc +++ b/gcc/rust/expand/rust-macro-builtins-log-debug.cc @@ -16,16 +16,18 @@ // along with GCC; see the file COPYING3. If not see // <http://www.gnu.org/licenses/>. +#include "rust-ast-fragment.h" #include "rust-macro-builtins.h" #include "rust-macro-builtins-helpers.h" namespace Rust { tl::optional<AST::Fragment> MacroBuiltin::assert_handler (location_t invoc_locus, - AST::MacroInvocData &invoc) + AST::MacroInvocData &invoc, + AST::InvocKind semicolon) { rust_debug ("assert!() called"); return AST::Fragment::create_error (); } -} // namespace Rust
\ No newline at end of file +} // namespace Rust |