Skip to content

Commit

Permalink
Removed unused variables in repeated_scalar_container.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
acozzette committed Mar 20, 2018
1 parent fcde518 commit 11d26ce
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions python/google/protobuf/pyext/repeated_scalar_container.cc
Expand Up @@ -276,9 +276,6 @@ static PyObject* Item(PyObject* pself, Py_ssize_t index) {
}

static PyObject* Subscript(PyObject* pself, PyObject* slice) {
RepeatedScalarContainer* self =
reinterpret_cast<RepeatedScalarContainer*>(pself);

Py_ssize_t from;
Py_ssize_t to;
Py_ssize_t step;
Expand Down Expand Up @@ -542,9 +539,6 @@ static PyObject* Insert(PyObject* pself, PyObject* args) {
}

static PyObject* Remove(PyObject* pself, PyObject* value) {
RepeatedScalarContainer* self =
reinterpret_cast<RepeatedScalarContainer*>(pself);

Py_ssize_t match_index = -1;
for (Py_ssize_t i = 0; i < Len(pself); ++i) {
ScopedPyObjectPtr elem(Item(pself, i));
Expand All @@ -568,9 +562,6 @@ static PyObject* ExtendMethod(PyObject* self, PyObject* value) {
}

static PyObject* RichCompare(PyObject* pself, PyObject* other, int opid) {
RepeatedScalarContainer* self =
reinterpret_cast<RepeatedScalarContainer*>(pself);

if (opid != Py_EQ && opid != Py_NE) {
Py_INCREF(Py_NotImplemented);
return Py_NotImplemented;
Expand Down Expand Up @@ -661,9 +652,6 @@ static PyObject* Pop(PyObject* pself, PyObject* args) {
}

static PyObject* ToStr(PyObject* pself) {
RepeatedScalarContainer* self =
reinterpret_cast<RepeatedScalarContainer*>(pself);

ScopedPyObjectPtr full_slice(PySlice_New(NULL, NULL, NULL));
if (full_slice == NULL) {
return NULL;
Expand Down

0 comments on commit 11d26ce

Please sign in to comment.