Commit 263951a8 authored by hybrid's avatar hybrid

Fix doxygen comment

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3527 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 9f6d5080
......@@ -13,7 +13,7 @@ namespace irr
namespace core
{
/*! \file irrxml.h
/*! \file coreutil.h
\brief File containing useful basic utility functions
*/
......@@ -139,7 +139,8 @@ inline s32 isInSameDirectory ( const io::path& path, const io::path& file )
}
// splits a path into components
static inline void splitFilename( const io::path &name, io::path *path,io::path* filename, io::path* extension,bool make_lower = false )
static inline void splitFilename(const io::path &name, io::path* path=0,
io::path* filename=0, io::path* extension=0, bool make_lower=false)
{
s32 i = name.size();
s32 extpos = i;
......@@ -185,4 +186,3 @@ inline s32 isupper(s32 c) { return c >= 'A' && c <= 'Z'; }
} // end namespace irr
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment