GCC workaround

pull/2/head
weidai 2003-03-20 03:18:53 +00:00
parent bd51507621
commit 65abe91c8c
1 changed files with 4 additions and 2 deletions

View File

@ -406,7 +406,8 @@ protected:
}
unsigned int GetDigestSize() const
{
return SCHEME_OPTIONS::HashFunction::DIGESTSIZE;
typedef CPP_TYPENAME SchemeOptions::HashFunction H;
return H::DIGESTSIZE;
}
};
@ -1311,7 +1312,8 @@ protected:
}
unsigned int GetDigestSize() const
{
return SchemeOptions::HashFunction::DIGESTSIZE;
typedef CPP_TYPENAME SchemeOptions::HashFunction H;
return H::DIGESTSIZE;
}
private: