Codemod folly::make_unique to std::make_unique
[folly.git] / folly / test / TryTest.cpp
index 932b7e9664f974d1cde1c8438b1d365daf782416..c986f40d471cbe74ffd485db74ddc68987de2b19 100644 (file)
@@ -55,7 +55,7 @@ TEST(Try, moveOnly) {
 
 TEST(Try, makeTryWith) {
   auto func = []() {
-    return folly::make_unique<int>(1);
+    return std::make_unique<int>(1);
   };
 
   auto result = makeTryWith(func);