pytorch/torch/csrc/jit/backends/backend_interface.cpp
Richard Barnes ee44d73e59 Modernize override (#61744)
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/61744

Test Plan: Sandcastle

Reviewed By: malfet

Differential Revision: D29717320

fbshipit-source-id: 6eea4295ee2e5572ab337620be412376fcc2f3cc
2021-07-23 23:04:46 -07:00

11 lines
266 B
C++

#include <torch/csrc/jit/backends/backend_interface.h>
namespace torch {
namespace jit {
PyTorchBackendInterface::PyTorchBackendInterface() noexcept = default;
PyTorchBackendInterface::~PyTorchBackendInterface() = default;
} // namespace jit
} // namespace torch