mirror of
https://github.com/saymrwulf/pytorch.git
synced 2026-05-15 21:00:47 +00: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
18 lines
378 B
C++
18 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
|