Quellcode durchsuchen

*** empty log message ***

David Rose vor 25 Jahren
Ursprung
Commit
36735622f5

+ 1 - 1
panda/src/express/multiplexStream.h

@@ -21,7 +21,7 @@
 //               thing to set Notify to refer to when running in batch
 //               mode.
 ////////////////////////////////////////////////////////////////////
-class EXPCL_PANDA MultiplexStream : public ostream {
+class EXPCL_PANDAEXPRESS MultiplexStream : public ostream {
 PUBLISHED:
   INLINE MultiplexStream();
 

+ 2 - 0
panda/src/express/multiplexStreamBuf.cxx

@@ -42,8 +42,10 @@ static char test[1024];
 ////////////////////////////////////////////////////////////////////
 MultiplexStreamBuf::
 MultiplexStreamBuf() {
+#ifndef WIN32_VC
   allocate();
   setp(base(), ebuf());
+#endif
 }
 
 ////////////////////////////////////////////////////////////////////

+ 1 - 1
panda/src/express/multiplexStreamBuf.h

@@ -16,7 +16,7 @@
 //               sends what is written to it to any number of
 //               additional sources, like other ostreams.
 ////////////////////////////////////////////////////////////////////
-class EXPCL_PANDA MultiplexStreamBuf : public streambuf {
+class EXPCL_PANDAEXPRESS MultiplexStreamBuf : public streambuf {
 public:
   MultiplexStreamBuf();
   virtual ~MultiplexStreamBuf();