add forgotten apply_tuple_test to Makefile.am
[folly.git] / folly / futures / QueuedImmediateExecutor.cpp
index 47b298f5dcb420d57b0cc4f7ed547874a30b76c1..1d2aeea75bb3e0c9517024ff1888dd317742ce38 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Facebook, Inc.
+ * Copyright 2016 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -30,7 +30,7 @@ void QueuedImmediateExecutor::addStatic(Func callback) {
       q_->pop();
     }
   } else {
-    q_->push(callback);
+    q_->push(std::move(callback));
   }
 }