diff options
Diffstat (limited to 'gcc/c-family/c-pretty-print.cc')
-rw-r--r-- | gcc/c-family/c-pretty-print.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/c-family/c-pretty-print.cc b/gcc/c-family/c-pretty-print.cc index 1ce19f5..fad6b5e 100644 --- a/gcc/c-family/c-pretty-print.cc +++ b/gcc/c-family/c-pretty-print.cc @@ -36,7 +36,6 @@ along with GCC; see the file COPYING3. If not see #include "function.h" #include "basic-block.h" #include "gimple.h" -#include "make-unique.h" /* The pretty-printer code is primarily designed to closely follow (GNU) C and C++ grammars. That is to be contrasted with spaghetti @@ -2994,7 +2993,7 @@ c_pretty_printer::c_pretty_printer (dump_flags_t dump_flags) std::unique_ptr<pretty_printer> c_pretty_printer::clone () const { - return ::make_unique<c_pretty_printer> (*this); + return std::make_unique<c_pretty_printer> (*this); } /* Print the tree T in full, on file FILE. */ |