From kde-core-devel Fri Oct 13 04:09:28 2000 From: Michael Matz Date: Fri, 13 Oct 2000 04:09:28 +0000 To: kde-core-devel Subject: [patch] arts/flow std:: issues X-MARC-Message: https://marc.info/?l=kde-core-devel&m=97141003218311 Hi, I again noticed namespace std:: issues on IRIX. This fixes them. Ciao, Michael. -- Index: asyncschedule.h =================================================================== RCS file: /home/kde/kdelibs/arts/flow/asyncschedule.h,v retrieving revision 1.10 diff -u -r1.10 asyncschedule.h --- asyncschedule.h 2000/10/02 00:52:56 1.10 +++ asyncschedule.h 2000/10/13 04:07:24 @@ -62,7 +62,7 @@ GenericAsyncStream *stream; FlowSystemSender sender; Notification gotPacketNotification; - list sent; + std::list sent; long _receiveHandlerID; public: @@ -86,7 +86,7 @@ protected: long notifyID; std::vector subscribers; - list sent; + std::list sent; GenericAsyncStream *stream; FlowSystemSender sender;