aboutsummaryrefslogtreecommitdiff
path: root/gcc/rust/rust-system.h
diff options
context:
space:
mode:
authorSimplyTheOther <simplytheother@gmail.com>2020-12-18 21:33:09 +0800
committerSimplyTheOther <simplytheother@gmail.com>2020-12-18 21:33:09 +0800
commitaa283484a3dffedc404653af18f9413775cbc3df (patch)
tree118a5b918c48fba3261731bba0a6b4149209f7d8 /gcc/rust/rust-system.h
parentf764eeb8abf1ec50794ddb1f31bc57d025e29a3c (diff)
parentbc14d9a0cd3c67093a9c11ad368c0d28325b21c6 (diff)
downloadgcc-aa283484a3dffedc404653af18f9413775cbc3df.zip
gcc-aa283484a3dffedc404653af18f9413775cbc3df.tar.gz
gcc-aa283484a3dffedc404653af18f9413775cbc3df.tar.bz2
Merge branch 'master' of https://github.com/redbrain/gccrs
Diffstat (limited to 'gcc/rust/rust-system.h')
-rw-r--r--gcc/rust/rust-system.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/rust/rust-system.h b/gcc/rust/rust-system.h
index a711fdc..26c9b33 100644
--- a/gcc/rust/rust-system.h
+++ b/gcc/rust/rust-system.h
@@ -40,6 +40,7 @@
#include <string>
#include <deque>
#include <functional>
+#include <memory>
// Rust frontend requires C++11 minimum, so will have unordered_map and set
#include <unordered_map>
@@ -56,7 +57,7 @@
#include "coretypes.h"
#include "diagnostic-core.h" /* For error_at and friends. */
-#include "intl.h" /* For _(). */
+#include "intl.h" /* For _(). */
// When using gcc, rust_assert is just gcc_assert.
#define rust_assert(EXPR) gcc_assert (EXPR)