diff options
author | Marek Polacek <polacek@redhat.com> | 2020-12-15 17:03:49 -0500 |
---|---|---|
committer | Marek Polacek <polacek@redhat.com> | 2020-12-15 17:04:17 -0500 |
commit | 65eac818dbc4d307ed109b71e9f737da7eae64e5 (patch) | |
tree | 15f9c422dff40b910fe0fec6b9a0f99f2802116f /libcody | |
parent | 4f0c800ba6091e77228c7ef73eb5efebc45559d7 (diff) | |
download | gcc-65eac818dbc4d307ed109b71e9f737da7eae64e5.tar.gz |
cody: Remove unused variable.
libcody/ChangeLog:
* buffer.cc (MessageBuffer::Lex): Remove unused variable.
Diffstat (limited to 'libcody')
-rw-r--r-- | libcody/buffer.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libcody/buffer.cc b/libcody/buffer.cc index 52df3176c9a..3256c37399b 100644 --- a/libcody/buffer.cc +++ b/libcody/buffer.cc @@ -224,7 +224,6 @@ int MessageBuffer::Lex (std::vector<std::string> &result) { result.clear (); - int err = ENOENT; if (IsAtEnd ()) return ENOENT; |