~zooko/cryptopp/trunk

« back to all changes in this revision

Viewing changes to fltrimpl.h

  • Committer: weidai
  • Date: 2005-07-12 04:23:32 UTC
  • Revision ID: svn-v4:57ff6487-cd31-0410-9ec3-f628ee90f5f0:trunk/c5:198
port to MSVC .NET 2005 beta 2

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        case site:      \
31
31
        statement;      \
32
32
        if (Output(site, output, length, messageEnd, blocking)) \
33
 
                return STDMAX(1U, (unsigned int)length-m_inputPosition);\
 
33
                return STDMAX(size_t(1), length-m_inputPosition);\
34
34
        }
35
35
 
36
36
#define FILTER_OUTPUT(site, output, length, messageEnd) \
44
44
        case site:      \
45
45
        statement;      \
46
46
        if (OutputModifiable(site, output, length, messageEnd, blocking))       \
47
 
                return STDMAX(1U, (unsigned int)length-m_inputPosition);\
 
47
                return STDMAX(size_t(1), length-m_inputPosition);\
48
48
        }
49
49
 
50
50
#define FILTER_OUTPUT_MODIFIABLE(site, output, length, messageEnd)      \