File: makeUnique.h

package info (click to toggle)
libvcflib 1.0.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 49,732 kB
  • sloc: cpp: 39,194; perl: 474; python: 321; ruby: 285; sh: 247; ansic: 198; makefile: 125; javascript: 94; lisp: 55
file content (8 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#include <memory>

namespace Detail {
  template <typename T, typename... Args>
  std::unique_ptr<T> makeUnique(Args &&... args) {
    return unique_ptr<T>(new T(forward<Args>(args)...));
  }
}