aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-07-07 19:17:24 +0000
committerlloyd <[email protected]>2010-07-07 19:17:24 +0000
commitb0afa56d00d8d7c222e6ba40a3e33ff85ba9ce3f (patch)
tree241a156d0445e88a15a21602a631d7c6c20c5f7c /src
parentfe6cb69f3f58badb68e95879cd72bdbd59d1e0da (diff)
Clang fix, PR 116
Diffstat (limited to 'src')
-rw-r--r--src/alloc/secmem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc/secmem.h b/src/alloc/secmem.h
index a5c1362ce..58b066eec 100644
--- a/src/alloc/secmem.h
+++ b/src/alloc/secmem.h
@@ -438,7 +438,7 @@ class SecureBuffer : public MemoryRegion<T>
* @param n the size of the array in
*/
SecureBuffer(const T in[], u32bit n)
- { init(true, L); copy(in, n); }
+ { init(true, L); this->copy(in, n); }
private:
SecureBuffer<T, L>& operator=(const MemoryRegion<T>& in)
{ if(this != &in) set(in); return (*this); }