diff options
author | nat-goodspeed <nat@lindenlab.com> | 2024-10-29 10:16:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-29 10:16:17 -0400 |
commit | 151a319034bbececc7d7ef115289d9f66d7ace66 (patch) | |
tree | 03cd743db4959f7f15e3886dff4291c9a128ff54 /indra/llcommon/resultset.cpp | |
parent | c5b499f3345bda4f97099793a5b9b4bcfffa0176 (diff) | |
parent | 541b44b873738a6b954125b31bca5f18c328bade (diff) |
Merge pull request #2940 from secondlife/nat/vector-resultset
Add LL::ResultSet subclass VectorResultSet for the simple case.
Diffstat (limited to 'indra/llcommon/resultset.cpp')
-rw-r--r-- | indra/llcommon/resultset.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/indra/llcommon/resultset.cpp b/indra/llcommon/resultset.cpp index 4d7b00eabd..8bdfbec272 100644 --- a/indra/llcommon/resultset.cpp +++ b/indra/llcommon/resultset.cpp @@ -61,20 +61,6 @@ LLSD ResultSet::getSlice(int index, int count) const return getSliceStart(index, count).first; } -/*==========================================================================*| -LLSD ResultSet::getSingle(int index) const -{ - if (0 <= index && index < getLength()) - { - return getSingle_(index); - } - else - { - return {}; - } -} -|*==========================================================================*/ - ResultSet::ResultSet(const std::string& name): mName(name) { |