Changeset 2530


Ignore:
Timestamp:
Jul 28, 2011, 9:04:25 PM (12 years ago)
Author:
Peter
Message:

avoid long line and remove empty lines

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/utility/stl_utility.h

    r2480 r2530  
    768768  const Tp& get(const std::map<Key, Tp, Compare, Alloc>& m, const Key& key)
    769769  {
    770     typename std::map<Key, Tp, Compare, Alloc>::const_iterator iter(m.find(key));
     770    typename std::map<Key, Tp, Compare,Alloc>::const_iterator iter(m.find(key));
    771771    if (iter==m.end()) {
    772772      std::stringstream ss;
     
    778778  }
    779779
    780 
    781 
    782780}}} // of namespace utility, yat, and theplu
    783 
    784781#endif
Note: See TracChangeset for help on using the changeset viewer.