-rw-r--r-- | include/opkele/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opkele/types.h b/include/opkele/types.h index 4e1415f..de44a5c 100644 --- a/include/opkele/types.h +++ b/include/opkele/types.h | |||
@@ -172,25 +172,25 @@ namespace opkele { | |||
172 | 172 | ||
173 | /** | 173 | /** |
174 | * dump the key/value pairs for the parameters to the stream. | 174 | * dump the key/value pairs for the parameters to the stream. |
175 | * @param o output stream | 175 | * @param o output stream |
176 | * @param p the parameters | 176 | * @param p the parameters |
177 | */ | 177 | */ |
178 | ostream& operator << (ostream& o,const params_t& p); | 178 | ostream& operator << (ostream& o,const params_t& p); |
179 | 179 | ||
180 | namespace xrd { | 180 | namespace xrd { |
181 | 181 | ||
182 | struct priority_compare { | 182 | struct priority_compare { |
183 | inline bool operator()(long a,long b) const { | 183 | inline bool operator()(long a,long b) const { |
184 | return (a<0) ? false : (b<0) ? false : (a<b); | 184 | return (a<0) ? false : (b<0) ? true : (a<b); |
185 | } | 185 | } |
186 | }; | 186 | }; |
187 | 187 | ||
188 | template <typename _DT> | 188 | template <typename _DT> |
189 | class priority_map : public multimap<long,_DT,priority_compare> { | 189 | class priority_map : public multimap<long,_DT,priority_compare> { |
190 | typedef multimap<long,_DT,priority_compare> map_type; | 190 | typedef multimap<long,_DT,priority_compare> map_type; |
191 | public: | 191 | public: |
192 | 192 | ||
193 | inline _DT& add(long priority,const _DT& d) { | 193 | inline _DT& add(long priority,const _DT& d) { |
194 | return insert(typename map_type::value_type(priority,d))->second; | 194 | return insert(typename map_type::value_type(priority,d))->second; |
195 | } | 195 | } |
196 | }; | 196 | }; |