logging: reduce the amount of code emitted for log statements
[folly.git] / folly / Partial.h
index 460df9a5875e884ec532c352da9371b0aaba413f..b39145287cf7eab928c00a18bf99ec5a0d42fb67 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -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_),