diff options
author | lloyd <[email protected]> | 2011-05-17 20:44:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-05-17 20:44:00 +0000 |
commit | dedc258d16e714f8694c9a812277fb56e3874fe1 (patch) | |
tree | 8a23ae6d6336ffd1fe8daf7d208c2608d212ffc5 /src/alloc | |
parent | b0560e9a8fee0391146e3b4ad25434950aba80e2 (diff) |
Fix the very basic operations for encoding and decoding a
certificate policies extension, though it's really not supported
at all.
Remove test code from secmem.h
Fix building the examples
Diffstat (limited to 'src/alloc')
-rw-r--r-- | src/alloc/secmem.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/alloc/secmem.h b/src/alloc/secmem.h index b06be0d55..80e8e59aa 100644 --- a/src/alloc/secmem.h +++ b/src/alloc/secmem.h @@ -34,7 +34,6 @@ class MemoryRegion */ bool empty() const { return (used == 0); } -#if 1 /** * Get a pointer to the first element in the buffer. * @return pointer to the first element in the buffer @@ -46,12 +45,6 @@ class MemoryRegion * @return constant pointer to the first element in the buffer */ operator const T* () const { return buf; } -#else - - T& operator[](size_t n) { return buf[n]; } - const T& operator[](size_t n) const { return buf[n]; } - -#endif /** * Get a pointer to the first element in the buffer. |