Skip to content

Commit e830d3c

Browse files
committed
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 <pierre-emmanuel.patry@embecosm.com>
1 parent 4d63af7 commit e830d3c

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 {
File renamed without changes.

0 commit comments

Comments
 (0)