eitd: change SIevents type to vector - no need to sort this temp list

Origin commit data
------------------
Branch: ni/coolstream
Commit: a4a3d20667
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-06-05 (Tue, 05 Jun 2012)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2012-06-05 20:18:48 +04:00
parent ebb4bc8a57
commit d736f03247
3 changed files with 7 additions and 4 deletions

View File

@@ -431,7 +431,8 @@ class SIevent
void dumpSmall(void) const; // dumps the event to stdout (not all information)
};
typedef std::set <SIevent, std::less<SIevent> > SIevents;
//typedef std::set <SIevent, std::less<SIevent> > SIevents;
typedef std::vector <SIevent> SIevents;
// Fuer for_each
struct printSIevent : public std::unary_function<SIevent, void>