mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-08-27 17:57:30 -04:00
persister cleanup (still broke but logic is there for when it isn't); also replace all the SOE BS for forwarding stl port with native object classes because i thought that may be part of the problem...
This commit is contained in:
@@ -38,7 +38,7 @@ private:
|
||||
LogObserver(LogObserver const &);
|
||||
LogObserver &operator=(LogObserver const &);
|
||||
|
||||
stdvector<std::string>::fwd* m_filters;
|
||||
std::vector<std::string>* m_filters;
|
||||
};
|
||||
|
||||
// ======================================================================
|
||||
|
||||
@@ -56,8 +56,8 @@ private:
|
||||
NetLogConnection * m_connection;
|
||||
bool m_connectionOpen;
|
||||
unsigned long m_connectTime;
|
||||
stdvector<LogMessage>::fwd* m_logMessageQueue1;
|
||||
stdvector<LogMessage>::fwd* m_logMessageQueue2;
|
||||
std::vector<LogMessage>* m_logMessageQueue1;
|
||||
std::vector<LogMessage>* m_logMessageQueue2;
|
||||
};
|
||||
|
||||
// ======================================================================
|
||||
|
||||
@@ -51,7 +51,7 @@ private:
|
||||
int m_fileIndex;
|
||||
|
||||
int m_numLines;
|
||||
stdvector<std::string>::fwd *m_textBuffer;
|
||||
std::vector<std::string> *m_textBuffer;
|
||||
int m_nextTextBufferEntry;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user