Commit 11d26ce2 authored by Adam Cozzette's avatar Adam Cozzette

Removed unused variables in repeated_scalar_container.cc

parent fcde5186
......@@ -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;
......@@ -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));
......@@ -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;
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment