make_unique.h 778 B

123456789101112131415161718192021222324252627
  1. /*
  2. * Copyright (C) 2022 The V-Gears Team
  3. *
  4. * This file is part of V-Gears
  5. *
  6. * V-Gears is free software: you can redistribute it and/or modify it under
  7. * terms of the GNU General Public License as published by the Free Software
  8. * Foundation, version 3.0 (GPLv3) of the License.
  9. *
  10. * V-Gears is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. */
  15. #pragma once
  16. #include <memory>
  17. #ifndef _MSC_VER
  18. namespace std{
  19. template<typename T, typename ...Args>
  20. std::unique_ptr<T> make_unique(Args&& ...args){
  21. return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
  22. }
  23. }
  24. #endif