1// Copyright (c) 2017-2021, Lawrence Livermore National Security, LLC and
2// other Axom Project Developers. See the top-level LICENSE file for details.
3//
4// SPDX-License-Identifier: (BSD-3-Clause)
5
6#ifndef MINT_CONFIG_HPP_
7#define MINT_CONFIG_HPP_
8
9#include "axom/config.hpp"// for compile-time definitions
10#include "axom/core/Types.hpp" // for fixed-width types
11
12#cmakedefine AXOM_MINT_USE_SIDRE
13
14namespace axom
15{
16namespace mint
17{
18
19constexpr IndexType USE_DEFAULT = -1;
20using int64 = axom::int64;
21
22} /* end namespace mint */
23} /* end namespace axom */
24
25
26
27#endif /* MINT_CONFIG_HPP_ */
28