Switch implicit references of folly::make_unique to std::make_unique
[folly.git] / folly / io / test / CompressionTest.cpp
index 6d12f57cf6b4d915818d49d9befdd3cb8993fd71..422969743effbd6274520bd0b2c040378e671aa1 100644 (file)
@@ -488,7 +488,7 @@ namespace {
 class CustomCodec : public Codec {
  public:
   static std::unique_ptr<Codec> create(std::string prefix, CodecType type) {
-    return make_unique<CustomCodec>(std::move(prefix), type);
+    return std::make_unique<CustomCodec>(std::move(prefix), type);
   }
   explicit CustomCodec(std::string prefix, CodecType type)
       : Codec(CodecType::USER_DEFINED),