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/include | |
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/include')
-rw-r--r-- | libcpp/include/cpplib.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libcpp/include/cpplib.h b/libcpp/include/cpplib.h index e199aec..1349871 100644 --- a/libcpp/include/cpplib.h +++ b/libcpp/include/cpplib.h @@ -912,7 +912,6 @@ class cpp_string_location_reader { private: location_t m_loc; int m_offset_per_column; - line_maps *m_line_table; }; /* A class for storing the source ranges of all of the characters within |