mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Test Plan: Sandcastle Pull Request resolved: https://github.com/pytorch/pytorch/pull/138499 Approved by: https://github.com/swolchok
23 lines
446 B
C++
23 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
|