mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00:00
This PR enables Wdeprecated on torch_cpu Pull Request resolved: https://github.com/pytorch/pytorch/pull/110204 Approved by: https://github.com/ezyang
17 lines
349 B
C++
17 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
|