From ecccf79c075ea94433bc277c56e77baee73a3cf7 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/fixedsizearray.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'yapf/fixedsizearray.hpp') diff --git a/yapf/fixedsizearray.hpp b/yapf/fixedsizearray.hpp index e81b6a258..5d6c3b313 100644 --- a/yapf/fixedsizearray.hpp +++ b/yapf/fixedsizearray.hpp @@ -24,9 +24,9 @@ struct CFixedSizeArrayT { // make types and constants visible from outside typedef Titem_ Titem; // type of array item - ST_CONST(int, Tcapacity = Tcapacity_) // the array capacity (maximum size) - ST_CONST(int, TitemSize = sizeof(Titem_)) // size of item - ST_CONST(int, ThdrSize = sizeof(CHdr)) // size of header + static const int Tcapacity = Tcapacity_; // the array capacity (maximum size) + static const int TitemSize = sizeof(Titem_); // size of item + static const int ThdrSize = sizeof(CHdr); // size of header /** Default constructor. Preallocate space for items and header, then initialize header. */ CFixedSizeArrayT() -- cgit v1.2.3-70-g09d2