blob: 69ecb3f24b5afa06dd55d620d5467fc6f98068c1 [file] [log] [blame]
// -*- C++ -*-
//===-- memory ------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
#ifndef __PSTL_memory
#define __PSTL_memory
#include "internal/pstl_config.h"
#if __PSTL_EXECUTION_POLICIES_DEFINED
// If <execution> has already been included, pull in implementations
# include "internal/glue_memory_impl.h"
#else
// Otherwise just pull in forward declarations
# include "internal/glue_memory_defs.h"
# define __PSTL_MEMORY_FORWARD_DECLARED 1
#endif
#endif /* __PSTL_memory */