소스 검색

extend() for initializer lists

default_compile_flags
vector-of-bool 5 년 전
부모
커밋
1d34c3e529
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      src/dds/util.hpp

+ 5
- 0
src/dds/util.hpp 파일 보기

@@ -62,6 +62,11 @@ void extend(Container& c, const Other& o) {
c.insert(c.end(), o.begin(), o.end());
}

template <typename Container, typename Item>
void extend(Container& c, std::initializer_list<Item> il) {
extend(c, il);
}

} // namespace dds

#endif // DDS_UTIL_HPP_INCLUDED

Loading…
취소
저장