diff options
author | David Malcolm <dmalcolm@redhat.com> | 2019-12-18 17:26:01 +0000 |
---|---|---|
committer | David Malcolm <dmalcolm@gcc.gnu.org> | 2019-12-18 17:26:01 +0000 |
commit | 6dd0c82021133b862c2250a7c6942030f191e568 (patch) | |
tree | 8f99e70a6a8efabd69d9fc2c2b5d860a87c34925 /libcpp/charset.c | |
parent | 77ce5555480140ec57c4d39169dfff19ad4a7d96 (diff) | |
download | gcc-6dd0c82021133b862c2250a7c6942030f191e568.zip gcc-6dd0c82021133b862c2250a7c6942030f191e568.tar.gz gcc-6dd0c82021133b862c2250a7c6942030f191e568.tar.bz2 |
Drop unused member from cpp_string_location_reader (PR preprocessor/92982)
libcpp/ChangeLog:
PR preprocessor/92982
* charset.c
(cpp_string_location_reader::cpp_string_location_reader): Delete
initialization of m_line_table.
* include/cpplib.h (cpp_string_location_reader::m_line_table):
Delete unused member.
From-SVN: r279541
Diffstat (limited to 'libcpp/charset.c')
-rw-r--r-- | libcpp/charset.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libcpp/charset.c b/libcpp/charset.c index a638a1b..5da39a6 100644 --- a/libcpp/charset.c +++ b/libcpp/charset.c @@ -2248,7 +2248,6 @@ _cpp_default_encoding (void) cpp_string_location_reader:: cpp_string_location_reader (location_t src_loc, line_maps *line_table) -: m_line_table (line_table) { src_loc = get_range_from_loc (line_table, src_loc).m_start; |