Moved the ~Record body into the .cpp to avoid a MipsPro compile error (due to a compiler bug)

This commit is contained in:
Robert Osfield
2008-07-21 19:23:03 +00:00
parent 34a085a1bd
commit e4b22e44d2
2 changed files with 5 additions and 1 deletions

View File

@@ -30,6 +30,10 @@ Record::Record()
{
}
Record::~Record()
{
}
void Record::read(RecordInputStream& in, Document& document)
{
_parent = document.getCurrentPrimaryRecord();

View File

@@ -61,7 +61,7 @@ public:
protected:
virtual ~Record() {}
virtual ~Record();
virtual void readRecord(RecordInputStream& in, Document& document);