mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
*** empty log message ***
This commit is contained in:
parent
5eee96dc49
commit
73db725bfc
@ -749,7 +749,7 @@ get_egg_group(const string &name, EggData &data) {
|
|||||||
} else {
|
} else {
|
||||||
size_t bar = name.rfind("|");
|
size_t bar = name.rfind("|");
|
||||||
string parent_name, local_name;
|
string parent_name, local_name;
|
||||||
if (bar != NPOS) {
|
if (bar != string::npos) {
|
||||||
parent_name = name.substr(0, bar);
|
parent_name = name.substr(0, bar);
|
||||||
local_name = name.substr(bar + 1);
|
local_name = name.substr(bar + 1);
|
||||||
} else {
|
} else {
|
||||||
|
@ -9,8 +9,8 @@
|
|||||||
|
|
||||||
#include <notify.h>
|
#include <notify.h>
|
||||||
|
|
||||||
#ifdef PENV_SGI
|
#ifndef HAVE_STREAMSIZE
|
||||||
// SGI compiler doesn't seem to define this yet.
|
// Some compilers--notably SGI--don't define this for us.
|
||||||
typedef int streamsize;
|
typedef int streamsize;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user