mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
This PR enables Wdeprecated on torch_cpu Pull Request resolved: https://github.com/pytorch/pytorch/pull/110204 Approved by: https://github.com/ezyang
18 lines
349 B
C++
18 lines
349 B
C++
#include "store_handler.h"
|
|
|
|
#include <memory>
|
|
|
|
#include <c10/util/typeid.h>
|
|
|
|
namespace caffe2 {
|
|
|
|
// NOLINTNEXTLINE(modernize-use-equals-default)
|
|
StoreHandler::~StoreHandler() {
|
|
// NOP; definition is here to make sure library contains
|
|
// symbols for this abstract class.
|
|
}
|
|
|
|
CAFFE_KNOWN_TYPE(std::unique_ptr<StoreHandler>);
|
|
|
|
} // namespace caffe2
|