#ifndef TOML11_UTILITY #define TOML11_UTILITY #include #include namespace toml { template inline std::unique_ptr make_unique(Ts&& ... args) { return std::unique_ptr(new T(std::forward(args)...)); } }// toml #endif // TOML11_UTILITY