mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 23:07:56 +02:00
MSVC 7.1 build fixes
This commit is contained in:
@@ -48,6 +48,9 @@
|
||||
namespace Poco {
|
||||
|
||||
|
||||
class Any;
|
||||
|
||||
|
||||
namespace Dynamic {
|
||||
|
||||
class Var;
|
||||
@@ -103,7 +106,11 @@ public:
|
||||
return pHolder;
|
||||
}
|
||||
|
||||
private:
|
||||
// MSVC71 doesn't extend friendship to nested class (Any::Holder)
|
||||
#if !defined(POCO_MSVC_VERSION) || (defined(POCO_MSVC_VERSION) && (POCO_MSVC_VERSION > 71))
|
||||
private:
|
||||
#endif
|
||||
|
||||
PlaceholderT* pHolder;
|
||||
mutable unsigned char holder[SizeV + 1];
|
||||
|
||||
|
Reference in New Issue
Block a user