From 8a588f9cf11356943c17eb64d81a98fbd142c5ea Mon Sep 17 00:00:00 2001 From: KUDr Date: Tue, 14 Nov 2006 12:02:36 +0000 Subject: (svn r7146) -CodeChange: ST_CONST macro removed as it is no longer needed (Tron) --- yapf/array.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'yapf/array.hpp') diff --git a/yapf/array.hpp b/yapf/array.hpp index 04fbe0983..d6fe2a75f 100644 --- a/yapf/array.hpp +++ b/yapf/array.hpp @@ -18,9 +18,9 @@ protected: CSuperArray m_a; ///< array of arrays of items public: - ST_CONST(int, Tblock_size = Tblock_size_) ///< block size is now visible from outside - ST_CONST(int, Tnum_blocks = Tnum_blocks_) ///< number of blocks is now visible from outside - ST_CONST(int, Tcapacity = Tblock_size * Tnum_blocks) ///< total max number of items + static const int Tblock_size = Tblock_size_; ///< block size is now visible from outside + static const int Tnum_blocks = Tnum_blocks_; ///< number of blocks is now visible from outside + static const int Tcapacity = Tblock_size * Tnum_blocks; ///< total max number of items /** implicit constructor */ FORCEINLINE CArrayT() { } -- cgit v1.2.3-70-g09d2