mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-28 12:26:08 +00:00

All compilers that libc++ supports support `push_macro` and `pop_macro`. So let's remove it. Reviewed By: ldionne, #libc Spies: libcxx-commits, mgorny Differential Revision: https://reviews.llvm.org/D126073
17 lines
448 B
C++
17 lines
448 B
C++
// -*- C++ -*-
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifdef min
|
|
# undef min
|
|
#endif
|
|
|
|
#ifdef max
|
|
# undef max
|
|
#endif
|