mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Reland of #116353 with C++ diagnostic macros restored. Pull Request resolved: https://github.com/pytorch/pytorch/pull/116751 Approved by: https://github.com/albanD
19 lines
378 B
C++
19 lines
378 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
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
|