Skip to content

Commit 8d5f089

Browse files
P-E-Pdkm
authored andcommitted
gccrs: Change parser template implementation file ext
We have a few more template implementation files within the rust frontend that use the hxx extension to make their content clear and highlight the missing header guards. gcc/rust/ChangeLog: * parse/rust-parse-impl-lexer.cc: Fix included file name. * parse/rust-parse-impl-macro.cc: Likewise. * parse/rust-parse-impl-proc-macro.cc: Likewise. * parse/rust-parse-impl.h: Move to... * parse/rust-parse-impl.hxx: ...here. Signed-off-by: Pierre-Emmanuel Patry <[email protected]>
1 parent 3953737 commit 8d5f089

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

gcc/rust/parse/rust-parse-impl-lexer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// along with GCC; see the file COPYING3. If not see
1717
// <http://www.gnu.org/licenses/>.
1818

19-
#include "rust-parse-impl.h"
19+
#include "rust-parse-impl.hxx"
2020

2121
namespace Rust {
2222

gcc/rust/parse/rust-parse-impl-macro.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// along with GCC; see the file COPYING3. If not see
1717
// <http://www.gnu.org/licenses/>.
1818

19-
#include "rust-parse-impl.h"
19+
#include "rust-parse-impl.hxx"
2020
#include "rust-macro-invoc-lexer.h"
2121

2222
namespace Rust {

gcc/rust/parse/rust-parse-impl-proc-macro.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// along with GCC; see the file COPYING3. If not see
1717
// <http://www.gnu.org/licenses/>.
1818

19-
#include "rust-parse-impl.h"
19+
#include "rust-parse-impl.hxx"
2020
#include "rust-proc-macro-invoc-lexer.h"
2121

2222
namespace Rust {

0 commit comments

Comments
 (0)