aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/util/equal_graph_def_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/util/equal_graph_def_test.cc')
-rw-r--r--tensorflow/core/util/equal_graph_def_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/core/util/equal_graph_def_test.cc b/tensorflow/core/util/equal_graph_def_test.cc
index af870c5c60..054cc92c16 100644
--- a/tensorflow/core/util/equal_graph_def_test.cc
+++ b/tensorflow/core/util/equal_graph_def_test.cc
@@ -13,6 +13,8 @@ See the License for the specific language governing permissions and
limitations under the License.
==============================================================================*/
+#include <utility>
+
#include "tensorflow/core/util/equal_graph_def.h"
#include "tensorflow/core/framework/node_def_util.h"
@@ -40,7 +42,7 @@ Node* Alternate(const GraphDefBuilder::Options& opts) {
Node* Combine(ops::NodeOut a, ops::NodeOut b,
const GraphDefBuilder::Options& opts) {
- return ops::BinaryOp("Combine", a, b, opts);
+ return ops::BinaryOp("Combine", std::move(a), std::move(b), opts);
}
class EqualGraphDefTest : public ::testing::Test {