diff options
Diffstat (limited to 'gcc/pretty-print-format-impl.h')
-rw-r--r-- | gcc/pretty-print-format-impl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/pretty-print-format-impl.h b/gcc/pretty-print-format-impl.h index 90692c8..2aded64 100644 --- a/gcc/pretty-print-format-impl.h +++ b/gcc/pretty-print-format-impl.h @@ -22,7 +22,7 @@ along with GCC; see the file COPYING3. If not see #define GCC_PRETTY_PRINT_FORMAT_IMPL_H #include "pretty-print.h" -#include "diagnostic-event-id.h" +#include "diagnostics/event-id.h" /* A struct representing a pending item to be printed within pp_format. @@ -224,14 +224,14 @@ struct pp_token_end_url : public pp_token struct pp_token_event_id : public pp_token { - pp_token_event_id (diagnostic_event_id_t event_id) + pp_token_event_id (diagnostics::paths::event_id_t event_id) : pp_token (kind::event_id), m_event_id (event_id) { gcc_assert (event_id.known_p ()); } - diagnostic_event_id_t m_event_id; + diagnostics::paths::event_id_t m_event_id; }; template <> |