Update of /cvsroot/yassl/yassl/taocrypt/include
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv6162/taocrypt/include
Modified Files:
block.hpp
Log Message:
fix clang++ xcode 5.1 warning
Index: block.hpp
===================================================================
RCS file: /cvsroot/yassl/yassl/taocrypt/include/block.hpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** block.hpp 26 Jan 2010 22:46:02 -0000 1.7
--- block.hpp 12 Mar 2014 00:16:01 -0000 1.8
***************
*** 195,201 ****
~Block() { allocator_.deallocate(buffer_, sz_); }
private:
word32 sz_; // size in Ts
T* buffer_;
- A allocator_;
};
--- 195,201 ----
~Block() { allocator_.deallocate(buffer_, sz_); }
private:
+ A allocator_;
word32 sz_; // size in Ts
T* buffer_;
};
|