logging: reduce the amount of code emitted for log statements
[folly.git] / folly / Partial.h
index 518e91ed673056d03ee4b1baa397d2b63dd6cf2d..b39145287cf7eab928c00a18bf99ec5a0d42fb67 100644 (file)
@@ -39,9 +39,6 @@ class Partial {
       : f_(std::forward<Callable>(callable)),
         stored_args_(std::forward<Args>(args)...) {}
 
-  // full auto doesn't work here due to
-  // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=70983 :(
-
   template <typename... CArgs>
   auto operator()(CArgs&&... cargs) & -> decltype(applyTuple(
       static_cast<F&>(f_),