pytorch/torch/csrc/jit/frontend/strtod.h
Michael Andreas Dagitses 6dae1e419e remove unnecessary ATen/core/Macros.h
Pull Request resolved: https://github.com/pytorch/pytorch/pull/76376

This is only used in a few places and only aliases the c10 macros
header.

Differential Revision: [D35904936](https://our.internmc.facebook.com/intern/diff/D35904936/)

Approved by: https://github.com/dreiss, https://github.com/malfet
2022-05-20 09:07:32 +00:00

13 lines
241 B
C++

#pragma once
#include <c10/macros/Macros.h>
namespace torch {
namespace jit {
TORCH_API double strtod_c(const char* nptr, char** endptr);
TORCH_API float strtof_c(const char* nptr, char** endptr);
} // namespace jit
} // namespace torch