aboutsummaryrefslogtreecommitdiffstats
path: root/emulator/opengl/shared/emugl/common
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@google.com>2014-03-27 17:23:17 +0100
committerDavid 'Digit' Turner <digit@google.com>2014-04-01 10:22:22 +0200
commit3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2 (patch)
tree99ffd8b7e5ca999624bd285fa2cbddfbd3bf6e6f /emulator/opengl/shared/emugl/common
parentd06559227bc6071c96572334d2a2e3f6eb4de96d (diff)
downloadsdk-3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2.zip
sdk-3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2.tar.gz
sdk-3d3ebb75c82c4d8c66d9c2029dac16a1d4758dd2.tar.bz2
emulator/opengl: Fix misc. compiler warnings.
These warnings appear when building the sources through the emulator's standalone build system, not the platform one. Change-Id: Ib5d51cf6211f32763be00c7436ae14c06f76b436
Diffstat (limited to 'emulator/opengl/shared/emugl/common')
-rw-r--r--emulator/opengl/shared/emugl/common/pod_vector.cpp1
-rw-r--r--emulator/opengl/shared/emugl/common/pod_vector.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/emulator/opengl/shared/emugl/common/pod_vector.cpp b/emulator/opengl/shared/emugl/common/pod_vector.cpp
index 3fe8f15..c8ec3a6 100644
--- a/emulator/opengl/shared/emugl/common/pod_vector.cpp
+++ b/emulator/opengl/shared/emugl/common/pod_vector.cpp
@@ -90,7 +90,6 @@ void PodVectorBase::resize(size_t newSize, size_t itemSize) {
}
void PodVectorBase::reserve(size_t newSize, size_t itemSize) {
- const size_t kMaxSize = maxItemCapacity(itemSize);
if (newSize == 0) {
::free(mBegin);
mBegin = NULL;
diff --git a/emulator/opengl/shared/emugl/common/pod_vector.h b/emulator/opengl/shared/emugl/common/pod_vector.h
index 22a8a1d..c4e184b 100644
--- a/emulator/opengl/shared/emugl/common/pod_vector.h
+++ b/emulator/opengl/shared/emugl/common/pod_vector.h
@@ -73,12 +73,10 @@ protected:
const void* end() const { return mEnd; }
void* itemAt(size_t pos, size_t itemSize) {
- const size_t kMaxCapacity = SIZE_MAX / itemSize;
return mBegin + pos * itemSize;
}
const void* itemAt(size_t pos, size_t itemSize) const {
- const size_t kMaxCapacity = SIZE_MAX / itemSize;
return mBegin + pos * itemSize;
}