Moved include of c headers to top, and remove using std::strlen in an attempt to solve gcc4.3 compile problems

This commit is contained in:
Robert Osfield
2008-03-25 13:14:14 +00:00
parent f50b9a3c79
commit 1bbd899a89
2 changed files with 3 additions and 4 deletions

View File

@@ -27,7 +27,6 @@
#elif defined(__GNUC__) || !defined(WIN32) || defined(__MWERKS__)
#include <cctype>
using std::tolower;
using std::strlen;
#endif
using namespace std;

View File

@@ -11,6 +11,9 @@
* OpenSceneGraph Public License for more details.
*/
#include <stdio.h>
#include <string.h>
#include <osg/Notify>
#include <osg/Object>
#include <osg/Image>
@@ -26,8 +29,6 @@
#include <osgDB/FileNameUtils>
#include <osgDB/Archive>
#include <stdio.h>
#include <algorithm>
#include <set>
@@ -36,7 +37,6 @@
#elif defined(__GNUC__) || !defined(WIN32) || defined(__MWERKS__)
#include <cctype>
using std::tolower;
using std::strlen;
#endif