mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 16:20:11 -04:00
physx: fix compiler errors
This commit is contained in:
parent
754344906c
commit
835aab5424
@ -16,11 +16,6 @@
|
|||||||
#include "string_utils.h"
|
#include "string_utils.h"
|
||||||
#include "config_putil.h"
|
#include "config_putil.h"
|
||||||
|
|
||||||
using std::istream;
|
|
||||||
using std::ostream;
|
|
||||||
|
|
||||||
ostream &
|
|
||||||
operator << (ostream &out, PhysxEnums::PhysxUpAxis axis) {
|
|
||||||
std::ostream &
|
std::ostream &
|
||||||
operator << (std::ostream &out, PhysxEnums::PhysxUpAxis axis) {
|
operator << (std::ostream &out, PhysxEnums::PhysxUpAxis axis) {
|
||||||
|
|
||||||
@ -38,8 +33,8 @@ operator << (std::ostream &out, PhysxEnums::PhysxUpAxis axis) {
|
|||||||
return out << "**invalid PhysxEnums::PhysxUpAxis value: (" << (int)axis << ")**";
|
return out << "**invalid PhysxEnums::PhysxUpAxis value: (" << (int)axis << ")**";
|
||||||
}
|
}
|
||||||
|
|
||||||
istream &
|
std::istream &
|
||||||
operator >> (istream &in, PhysxEnums::PhysxUpAxis &axis) {
|
operator >> (std::istream &in, PhysxEnums::PhysxUpAxis &axis) {
|
||||||
|
|
||||||
std::string word;
|
std::string word;
|
||||||
in >> word;
|
in >> word;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user