aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc/secmem.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc/secmem.h')
-rw-r--r--src/alloc/secmem.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/alloc/secmem.h b/src/alloc/secmem.h
index c87035a1e..194a78e5f 100644
--- a/src/alloc/secmem.h
+++ b/src/alloc/secmem.h
@@ -320,15 +320,6 @@ class MemoryVector : public MemoryRegion<T>
*/
MemoryVector(const MemoryRegion<T>& in)
{ init(false); set(&in[0], in.size()); }
-
- /**
- * Create a buffer whose content is the concatenation of two other
- * buffers.
- * @param in1 the first part of the new contents
- * @param in2 the contents to be appended to in1
- */
- MemoryVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2)
- { init(false); set(&in1[0], in1.size()); append(in2); }
};
/**
@@ -389,15 +380,6 @@ class SecureVector : public MemoryRegion<T>
else
set(&in[0], in.size());
}
-
- /**
- * Create a buffer whose content is the concatenation of two other
- * buffers.
- * @param in1 the first part of the new contents
- * @param in2 the contents to be appended to in1
- */
- SecureVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2)
- { init(true); set(&in1[0], in1.size()); append(in2); }
};
/**