Fixes for compilation under IRIX, submitted by Randal Hopper, with mods

from Robert.
This commit is contained in:
Robert Osfield
2001-10-15 15:50:55 +00:00
parent 5de4e8e6d8
commit de924ca759
10 changed files with 18 additions and 15 deletions

View File

@@ -7,7 +7,12 @@
#include <osg/Referenced>
#ifdef __sgi
#include <time.h>
#else
#include <ctime>
using std::tm;
#endif
namespace osg
{

View File

@@ -132,7 +132,7 @@ namespace osg{
}
else
{
return *_sgiClockAddress;
return *_clockAddress;
}
}
};