diff options
author | SimplyTheOther <simplytheother@gmail.com> | 2020-12-09 15:29:51 +0800 |
---|---|---|
committer | SimplyTheOther <simplytheother@gmail.com> | 2020-12-09 15:29:51 +0800 |
commit | 41c14b45ac604ebd69a6715445cdb10fc5c5ec07 (patch) | |
tree | fb9e6c7e60b9024b1857c0fcf6241c118f2f67f4 /gcc/rust/rust-backend.h | |
parent | 815c9e8b0734d45a6e5b5a7d50f38d4af7120a8c (diff) | |
parent | cef34bd730d80b4664d8633e2cc27a64c5cae246 (diff) | |
download | gcc-41c14b45ac604ebd69a6715445cdb10fc5c5ec07.zip gcc-41c14b45ac604ebd69a6715445cdb10fc5c5ec07.tar.gz gcc-41c14b45ac604ebd69a6715445cdb10fc5c5ec07.tar.bz2 |
Merge branch 'master' of https://github.com/redbrain/gccrs
Diffstat (limited to 'gcc/rust/rust-backend.h')
-rw-r--r-- | gcc/rust/rust-backend.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/rust/rust-backend.h b/gcc/rust/rust-backend.h index ccc5e47..a907fe4 100644 --- a/gcc/rust/rust-backend.h +++ b/gcc/rust/rust-backend.h @@ -1,4 +1,5 @@ -#pragma once +#ifndef RUST_BACKEND_H +#define RUST_BACKEND_H #include <gmp.h> #include <mpfr.h> @@ -759,3 +760,5 @@ public: // section in the output object file. virtual void write_export_data (const char *bytes, unsigned int size) = 0; }; + +#endif // RUST_BACKEND_H |