Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
comply with C++ defect report on user-defined literals (#4215)
## Summary C++ has new rules about user-defined literals. `AMReX_REAL.H` is updated to comply. Old syntax: ``` operator"" _rt ``` New syntax required by the C++ standards committee: ``` operator""_rt ``` ## Additional background https://cplusplus.github.io/CWG/issues/2521.html
- Loading branch information