mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-14 20:57:59 +00:00
Test Plan: Sandcastle Pull Request resolved: https://github.com/pytorch/pytorch/pull/138499 Approved by: https://github.com/swolchok
22 lines
446 B
C++
22 lines
446 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#if !defined(FBCODE_CAFFE2) && !defined(C10_NO_DEPRECATED)
|
|
|
|
namespace c10 {
|
|
|
|
// NOLINTNEXTLINE(misc-unused-using-decls)
|
|
using std::stod;
|
|
// NOLINTNEXTLINE(misc-unused-using-decls)
|
|
using std::stoi;
|
|
// NOLINTNEXTLINE(misc-unused-using-decls)
|
|
using std::stoll;
|
|
// NOLINTNEXTLINE(misc-unused-using-decls)
|
|
using std::stoull;
|
|
// NOLINTNEXTLINE(misc-unused-using-decls)
|
|
using std::to_string;
|
|
|
|
} // namespace c10
|
|
|
|
#endif
|