pytorch/caffe2/distributed/store_handler.cc
2023-10-07 19:46:08 +00:00

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