mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/13689 Now that typeid.h lives in c10/util, the include paths should reflect that. Reviewed By: ezyang Differential Revision: D12912237 fbshipit-source-id: e54225f049f690de77cb6d5f417994b211a6e1fb
19 lines
431 B
C++
19 lines
431 B
C++
#include "store_handler.h"
|
|
|
|
#include <memory>
|
|
|
|
#include <c10/util/typeid.h>
|
|
|
|
namespace caffe2 {
|
|
|
|
constexpr std::chrono::milliseconds StoreHandler::kDefaultTimeout;
|
|
constexpr std::chrono::milliseconds StoreHandler::kNoTimeout;
|
|
|
|
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
|